Update build.yml #190
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
on: [push, pull_request] | |
name: Build | |
jobs: | |
build-linux: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: ./build.sh | |
working-directory: ./Build | |
build-macos: | |
runs-on: macos-10.15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: ./build.sh | |
working-directory: ./Build | |
build-windows: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: ./build.bat | |
working-directory: ./Build | |
- name: Upload Windows 64bit Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.win64.exe | |
path: act.win64.exe | |
- name: Upload Windows 32bit Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.win32.exe | |
path: act.win32.exe | |
- name: Upload MacOS Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.darwin | |
path: act.darwin | |
- name: Upload MacOS ARM Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.arm.darwin | |
path: act.arm.darwin | |
- name: Upload Linux 32bit Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.linux32 | |
path: act.linux32 | |
- name: Upload Linux ARM 32bit Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.arm.linux32 | |
path: act.arm.linux32 | |
- name: Upload Linux 64bit Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.linux64 | |
path: act.linux64 | |
- name: Upload Linux ARM 64bit Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: act.arm.linux64 | |
path: act.arm.linux64 | |