diff options
| author | Andre Weissflog <floooh@gmail.com> | 2022-10-08 16:40:38 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2022-10-08 16:40:38 +0200 |
| commit | a2f1113e391228962f1f9c23ffa74f3d02349fa4 (patch) | |
| tree | b518982b7822d5d43f1fd976d2df4673a2891cb1 /.github | |
| parent | fac9ce31218ea4453454712eb5288e2b1b1989b7 (diff) | |
gh actions: remove nim since Nim 1.6.8 seems broken on Windows
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 746b9baf..86e6132f 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -103,31 +103,31 @@ jobs: - name: build run: zig build - test-nim: - needs: gen-bindings - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - runs-on: ${{matrix.os}} - steps: - - uses: jiro4989/setup-nim-action@v1 - - uses: actions/checkout@v2 - with: - repository: floooh/sokol-nim - - uses: actions/download-artifact@v2 - with: - name: ignore-me-nim - path: src/sokol - - if: runner.os == 'Linux' - name: prepare - run: | - sudo apt-get update - sudo apt-get install libgl1-mesa-dev libegl1-mesa-dev mesa-common-dev xorg-dev libasound-dev - - name: build - run: | - nimble install -Y - nimble install glm -Y - nimble build_all +# test-nim: +# needs: gen-bindings +# strategy: +# matrix: +# os: [ubuntu-latest, macos-latest, windows-latest] +# runs-on: ${{matrix.os}} +# steps: +# - uses: jiro4989/setup-nim-action@v1 +# - uses: actions/checkout@v2 +# with: +# repository: floooh/sokol-nim +# - uses: actions/download-artifact@v2 +# with: +# name: ignore-me-nim +# path: src/sokol +# - if: runner.os == 'Linux' +# name: prepare +# run: | +# sudo apt-get update +# sudo apt-get install libgl1-mesa-dev libegl1-mesa-dev mesa-common-dev xorg-dev libasound-dev +# - name: build +# run: | +# nimble install -Y +# nimble install glm -Y +# nimble build_all test-odin: needs: gen-bindings @@ -212,26 +212,26 @@ jobs: git diff-index --quiet HEAD || git commit -m "updated (https://github.com/floooh/sokol/commit/${{ github.sha }})" git push - deploy-nim: - needs: test-nim - if: github.ref == 'refs/heads/master' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - repository: floooh/sokol-nim - ssh-key: ${{ secrets.GHACTIONS_NIM_PUSH }} - - uses: actions/download-artifact@v2 - with: - name: ignore-me-nim - path: src/sokol - - name: "commit and push" - run: | - git config user.email "none" - git config user.name "GH Action" - git add -A - git diff-index --quiet HEAD || git commit -m "updated (https://github.com/floooh/sokol/commit/${{ github.sha }})" - git push +# deploy-nim: +# needs: test-nim +# if: github.ref == 'refs/heads/master' +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v2 +# with: +# repository: floooh/sokol-nim +# ssh-key: ${{ secrets.GHACTIONS_NIM_PUSH }} +# - uses: actions/download-artifact@v2 +# with: +# name: ignore-me-nim +# path: src/sokol +# - name: "commit and push" +# run: | +# git config user.email "none" +# git config user.name "GH Action" +# git add -A +# git diff-index --quiet HEAD || git commit -m "updated (https://github.com/floooh/sokol/commit/${{ github.sha }})" +# git push deploy-odin: needs: test-odin |