-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Processing GitHub action #99
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should be good to go after you considered my comments. Refer to the README.md of https://github.com/pr1metine/setup-processing
.github/workflows/ci.yml
Outdated
- name: Setup Processing | ||
uses: ifP1/setup-processing@v2.0.0 | ||
uses: ifP1/setup-processing@v2.1.0 | ||
- name: Install Processing libs | ||
run: | | ||
ls /opt/hostedtoolcache/processing/${{matrix.processing-version}}/x64 | ||
ls /opt/hostedtoolcache/processing/${{steps.setup-processing.outputs.install-dir}}/x64 | ||
sudo apt install wget curl -y | ||
curl -s https://api.github.com/repos/sojamo/controlp5/releases/latest | jq -r '.assets[0]["browser_download_url"]' | xargs -L 1 wget -q | ||
unzip -d /opt/hostedtoolcache/processing/${{matrix.processing-version}}/x64/modes/java/libraries controlP5* | ||
unzip -d /opt/hostedtoolcache/processing/${{steps.setup-processing.outputs.install-dir}}/x64/modes/java/libraries controlP5* | ||
curl -s https://api.github.com/repos/ddf/Minim/releases/latest | jq -r '.["zipball_url"]' | xargs -L 1 wget -q | ||
unzip -d /opt/hostedtoolcache/processing/${{matrix.processing-version}}/x64/modes/java/libraries v* | ||
sudo mv /opt/hostedtoolcache/processing/${{matrix.processing-version}}/x64/modes/java/libraries/ddf-Minim-* /opt/hostedtoolcache/processing/${{matrix.processing-version}}/x64/modes/java/libraries/minim | ||
ls /opt/hostedtoolcache/processing/${{matrix.processing-version}}/x64/modes/java/libraries | ||
unzip -d /opt/hostedtoolcache/processing/${{steps.setup-processing.outputs.install-dir}}/x64/modes/java/libraries v* | ||
sudo mv /opt/hostedtoolcache/processing/${{steps.setup-processing.outputs.install-dir}}/x64/modes/java/libraries/ddf-Minim-* /opt/hostedtoolcache/processing/${{steps.setup-processing.outputs.install-dir}}/x64/modes/java/libraries/minim | ||
ls /opt/hostedtoolcache/processing/${{steps.setup-processing.outputs.install-dir}}/x64/modes/java/libraries |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See Linux comments
Nice 🤝 |
Thanks again for the support @pr1metine, much appreciated. |
No description provided.