From cef711a497f097353c94ccbec09312e4cf8432fb Mon Sep 17 00:00:00 2001 From: paoda Date: Sun, 6 Aug 2023 23:13:11 +0100 Subject: [PATCH] ci: add CI --- .github/workflows/main.yml | 62 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..12e5a9a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,62 @@ +name: Nightly + +on: + push: + paths: + - "**.zig" + - "**.zig.zon" + branches: + - main + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{matrix.os}} + steps: + - uses: goto-bus-stop/setup-zig@v2 + with: + version: 0.11.0 + - name: prepare-linux + if: runner.os == 'Linux' + run: | + sudo apt update + sudo apt install libgtk-3-dev libsdl2-dev + - name: prepare-windows + if: runner.os == 'Windows' + run: | + vcpkg integrate install + vcpkg install sdl2:x64-windows + git config --global core.autocrlf false + - name: prepare-macos + if: runner.os == 'macOS' + run: | + brew install sdl2 + - uses: actions/checkout@v3 + with: + submodules: recursive + - name: build + run: zig build -Doptimize=ReleaseSafe -Dcpu=baseline + - name: prepare-executable + run: | + mv zig-out/lib/* zig-out/bin + - name: upload + uses: actions/upload-artifact@v3 + with: + name: zba-${{matrix.os}} + path: zig-out/bin + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + - uses: goto-bus-stop/setup-zig@v2 + with: + version: 0.11.0-dev.3395+1e7dcaa3a + - run: zig fmt src/**/*.zig + \ No newline at end of file