Port bufferoffsets example from sokol-odin #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
on: [push] | |
jobs: | |
build-and-run: | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
arch: arm64 | |
- os: ubuntu-latest | |
arch: x64 | |
- os: windows-latest | |
arch: x64 | |
runs-on: ${{ matrix.os }} | |
name: Build and run | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: radekm/setup-c3@v1 | |
with: | |
version: v0.6.4 | |
- if: runner.os == 'Linux' | |
name: Install Linux Dependencies | |
run: | | |
sudo apt update | |
sudo apt install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev | |
- shell: bash | |
run: | | |
./build-examples.sh | |
ls -l build |