Create SoundEffect.hx #224
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 Build | |
on: | |
push: | |
branches: [main, experimental] | |
pull_request: | |
branches: [main, experimental] | |
workflow_dispatch: | |
jobs: | |
buildLinux: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: 4.3.4 | |
# Runs a set of commands using the runners shell | |
- name: Install Haxelib | |
run: | | |
sudo apt-get install libvlc-dev | |
sudo apt-get install libvlccore-dev | |
haxelib setup ~/haxelib | |
haxelib install hxcpp > /dev/null --quiet | |
chmod +x ./setup/unix.sh | |
sh ./setup/unix.sh | |
- name: Skip SScript setup mode | |
run: echo 'oy9:showMacroty8:loopCosti25y10:includeAllfg' >> ~/settings.cocoa | |
- name: Create Version Tag | |
run: echo "${{github.run_id}}" > VERSION | |
- name: Compile | |
run: haxelib run lime build Project.xml linux --app-version="4.0.0-${{ github.run_id}}" | |
- name: Publish Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linuxBuild | |
path: export/release/linux/bin |