Update bindgen #98
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: "Build" | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
paths-ignore: | |
- "**.md" | |
jobs: | |
native-job: | |
name: "Build native libraries: ${{ matrix.platform.rid }}" | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- { name: Windows (x64), os: windows-latest, rid: win-x64 } | |
- { name: macOS (x64 + arm64), os: macos-latest, rid: osx } | |
- { name: Linux (x64), os: ubuntu-latest, rid: linux-x64 } | |
steps: | |
- name: "Clone Git repository" | |
uses: actions/checkout@master | |
with: | |
submodules: "recursive" | |
- name: "Install C2CS" | |
shell: bash | |
run: dotnet tool install --global bottlenoselabs.C2CS.Tool | |
- name: "Get C2CS version" | |
shell: bash | |
run: echo "C2CS_VERSION=$(c2cs --version)" >> $GITHUB_ENV | |
- name: "Cache native libraries" | |
id: cache-libs | |
uses: actions/cache@v3 | |
with: | |
path: "./lib" | |
key: "libs-${{ matrix.platform.rid }}-${{ hashFiles('ext/sokol/**/*') }}-${{ hashFiles('src/c/**/*') }}-${{ hashFiles('bindgen/**/*') }}-${{ env.C2CS_VERSION }}" | |
- name: "Install Windows dependencies" | |
if: runner.os == 'Windows' && steps.cache-libs.outputs.cache-hit != 'true' | |
run: | | |
choco install ninja | |
- name: "Install macOS dependencies" | |
if: runner.os == 'macOS' && steps.cache-libs.outputs.cache-hit != 'true' | |
run: | | |
brew install ninja | |
- name: Setup Linux dependencies | |
if: runner.os == 'Linux' && steps.cache-libs.outputs.cache-hit != 'true' | |
run: | | |
sudo apt-get update | |
sudo apt-get install \ | |
ninja-build \ | |
libxi-dev libxcursor-dev libgl-dev libasound2-dev | |
- name: "Build native libraries" | |
if: steps.cache-libs.outputs.cache-hit != 'true' | |
shell: bash | |
run: ./library.sh "auto" | |
- name: "Upload native libraries" | |
uses: actions/upload-artifact@v2 | |
with: | |
path: "./lib" | |
name: "native-libraries-${{ matrix.platform.rid }}" | |
dotnet-job: | |
name: "Build .NET solution" | |
needs: [native-job] | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Clone Git repository" | |
uses: actions/checkout@master | |
with: | |
submodules: 'true' | |
- name: "Download native libraries (win-x64)" | |
uses: actions/download-artifact@v1 | |
with: | |
name: "native-libraries-win-x64" | |
path: "./lib" | |
- name: "Download native libraries (osx)" | |
uses: actions/download-artifact@v1 | |
with: | |
name: "native-libraries-osx" | |
path: "./lib" | |
- name: "Download native libraries (linux-x64)" | |
uses: actions/download-artifact@v1 | |
with: | |
name: "native-libraries-linux-x64" | |
path: "./lib" | |
- name: "Download generated C# code" | |
uses: actions/download-artifact@v1 | |
continue-on-error: true | |
with: | |
name: "bindgen-cs" | |
path: "./src/cs/production/Interop.Sokol" | |
- name: ".NET Build" | |
run: dotnet build "./src/cs" --nologo --verbosity minimal --configuration Release -p:PackageVersion="$(date +'%Y.%m.%d')" | |