Add support for command line arguments #13
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
# This is a basic workflow to help you get started with Actions | |
name: Build | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ main, experimental ] | |
pull_request: | |
branches: [ main, experimental ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
buildLinux: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-22.04 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@main | |
- uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: latest | |
- name: Restore Cache | |
uses: actions/cache@main | |
with: | |
key: cache-build-linux | |
path: | | |
.haxelib/ | |
export/release/linux/haxe/ | |
export/release/linux/obj/ | |
restore-keys: | | |
cache-build-linux | |
- name: Install Haxelib | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-multilib g++-multilib haxe -y | |
sudo apt-get install libvlc-dev | |
sudo apt-get install libvlccore-dev | |
sudo apt-get install vlc-bin | |
sudo apt-get -y install libidn12 | |
haxe -cp ./setup -D analyzer-optimize -main Main --interp | |
- 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 fixrepo | |
haxelib run lime build linux | |
- name: Tar files | |
run: tar -zcvf PsychEngine.tar.gz export/release/linux/bin | |
- name: Publish Artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: linuxBuild | |
path: PsychEngine.tar.gz | |
- name: Uploading new cache | |
uses: actions/cache@main | |
with: | |
key: cache-build-linux | |
path: | | |
.haxelib/ | |
export/release/linux/haxe/ | |
export/release/linux/obj/ | |
restore-keys: | | |
cache-build-linux | |
buildWindows: | |
runs-on: windows-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@main | |
- uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: latest | |
- name: Restore Cache | |
uses: actions/cache@main | |
with: | |
key: cache-build-windows | |
path: | | |
.haxelib/ | |
export/release/windows/haxe/ | |
export/release/windows/obj/ | |
restore-keys: | | |
cache-build-windows | |
- name: Install Haxelib | |
run: | | |
haxe -cp ./setup -D analyzer-optimize -main Main --interp | |
shell: cmd | |
- name: Skip SScript setup mode | |
run: echo 'oy9:showMacroty8:loopCosti25y10:includeAllfg' >> %USERPROFILE%/settings.cocoa | |
shell: cmd | |
- name: Create Version Tag | |
run: echo "${{github.run_id}}" > VERSION | |
- name: Compile | |
run: haxelib run lime build windows | |
- name: Publish Artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: windowsBuild | |
path: export/release/windows/bin | |
- name: Uploading new cache | |
uses: actions/cache@main | |
with: | |
key: cache-build-windows | |
path: | | |
.haxelib/ | |
export/release/windows/haxe/ | |
export/release/windows/obj/ | |
restore-keys: | | |
cache-build-windows | |
buildMac: | |
runs-on: macos-12 | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@main | |
- uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: latest | |
# Runs a set of commands using the runners shell | |
- name: Install Haxelib | |
run: | | |
haxe -cp ./setup -D analyzer-optimize -main Main --interp | |
- 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 mac | |
- name: Tar files | |
run: tar -zcvf PsychEngine.tar.gz export/release/macos/bin | |
- name: Publish Artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: macBuild | |
path: PsychEngine.tar.gz | |
- name: Uploading new cache | |
uses: actions/cache@main | |
with: | |
key: cache-build-mac | |
path: | | |
.haxelib/ | |
export/release/macos/haxe/ | |
export/release/macos/obj/ | |
restore-keys: | | |
cache-build-mac |