Typo fix. #173
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: C/C++ CI | |
concurrency: | |
group: environment-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: apt | |
run: sudo apt update && sudo apt install bison flex ninja-build lua5.3 | |
- name: make | |
run: make | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: brew | |
run: brew install ninja [email protected] | |
- name: make | |
run: | | |
make | |
build-windows: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
msystem: UCRT64 | |
install: >- | |
make | |
mingw-w64-ucrt-x86_64-gcc | |
mingw-w64-ucrt-x86_64-lua | |
mingw-w64-ucrt-x86_64-nsis | |
ninja | |
bison | |
flex | |
zip | |
git | |
- uses: actions/checkout@v3 | |
- name: build | |
run: | | |
make LDFLAGS="-s -static" CFLAGS=-Os | |
- name: package | |
run: | | |
make ack-setup.exe | |
- name: upload setup | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ github.event.repository.name }}.${{ github.sha }} | |
path: ack-setup.exe |