Commit df3c387d authored by Jos's avatar Jos Committed by josmas

Download phantomJS during build on github action

Build fails when running tests because phantomJS is not available.
parent 28118137
......@@ -16,6 +16,14 @@ jobs:
run: git submodule update --init --recursive
- name: 'Install 32-bit dependencies'
run: sudo apt-get install -y libc6-i386 lib32z1 lib32stdc++6
- name: 'Download phantomJS'
run: |
mkdir /tmp/phantomJS
wget -P /tmp/phantomJS/ https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
- name: 'Untar and add to PATH'
run: |
tar -xf /tmp/phantomJS/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /tmp/phantomJS/
echo "/tmp/phantomJS/phantomjs-2.1.1-linux-x86_64/bin" >> $GITHUB_PATH
- name: 'Make Auth Key'
run: ant MakeAuthKey
working-directory: appinventor
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment