diff options
| author | Andre Weissflog <floooh@gmail.com> | 2024-08-21 19:21:25 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2024-08-21 19:21:25 +0200 |
| commit | 4824328c181795bb1dcd2de2179e69e9472196e9 (patch) | |
| tree | c01a6741af2e99a9bbc4534a4a9f367aacf5c7bb /.github/workflows | |
| parent | 8de86d56cc028cdba1fa6a677a24b36d040613cd (diff) | |
gh actions: fix test-nim step
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 1515502b..39af7866 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -137,13 +137,12 @@ jobs: strategy: fail-fast: false matrix: - #os: [ubuntu-latest, macos-latest, windows-latest] - os: [ubuntu-latest, macos-latest ] + os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{matrix.os}} steps: - uses: jiro4989/setup-nim-action@v2 with: - nim-version: '2.x' + nim-version: '2.0.x' repo-token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@main with: @@ -156,11 +155,10 @@ jobs: name: prepare run: | sudo apt-get update - sudo apt-get install libgl1-mesa-dev libegl1-mesa-dev mesa-common-dev xorg-dev libasound-dev + sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev - name: build run: | nimble install -Y - nimble install glm -Y nimble build_all test-odin: |