updated (https://github.com/floooh/sokol/commit/31ff258281fddd2a01304… #126
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: CI Build | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
runs-on: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: goto-bus-stop/setup-zig@v2 | |
- uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ldc-master | |
- name: prepare-linux | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev | |
- name: Running Test | |
if: runner.os != 'Windows' | |
run: zig build test -DzigCC | |
- name: Build Native | |
run: zig build -DzigCC --summary all | |
- name: Build Wasm | |
run: zig build -DzigCC --summary all -Dtarget=wasm32-emscripten |