Update README.md #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Gluon's GraalVM | |
uses: gluonhq/setup-graalvm@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install libraries | |
run: | | |
sudo apt update | |
sudo apt install libasound2-dev libavcodec-dev libavformat-dev libavutil-dev libgl-dev libgtk-3-dev libpango1.0-dev libxtst-dev | |
- name: Make staging directory | |
run: mkdir staging | |
- name: Gluon License | |
uses: gluonhq/gluon-build-license@v1 | |
with: | |
gluon-license: ${{ secrets.GLUON_LICENSE }} | |
- name: Gluon Build | |
run: ./mvnw -Pdesktop gluonfx:build gluonfx:package | |
- name: Copy native image to staging | |
run: cp -r target/gluonfx/x86_64-linux/HelloGluon* staging | |
- name: Upload | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Package | |
path: staging |