Skip to content

Commit

Permalink
ci(lua): re-enable macos runner
Browse files Browse the repository at this point in the history
  • Loading branch information
alemidev committed Sep 10, 2024
1 parent a17c0e0 commit 73f6ed7
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/lua.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,36 @@ jobs:

# macos requires some extra cargo config to make it work, but
# these settings make test fail so better limit them to this run
#build-macos:
# runs-on: ${{ matrix.platform.runner }}
# strategy:
# fail-fast: false
# matrix:
# platform:
# - runner: macos-14
# target: darwin-arm64
# filename: codemp.dylib
# #- runner: macos-12
# # target: darwin-x64
# # filename: codemp.dylib
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# - uses: arduino/setup-protoc@v3
# # this is the extra config required for lua
# - run: mkdir .cargo
# - run: echo '${{ vars.MLUA_CARGO_CONFIG_EXTRA_SETTINGS }}' > .cargo/config.toml
# # TODO can we make it prettier?
# - run: cargo build --release --features=lua
# - uses: actions/upload-artifact@v4
# with:
# name: codemp-lua-${{ matrix.platform.target }}
# path: target/release/${{ matrix.platform.filename }}
build-macos:
runs-on: ${{ matrix.platform.runner }}
strategy:
fail-fast: false
matrix:
platform:
- runner: macos-14
target: darwin-arm64
filename: codemp.dylib
#- runner: macos-12
# target: darwin-x64
# filename: codemp.dylib
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: arduino/setup-protoc@v3
# this is the extra config required for lua
- run: mkdir .cargo
- run: echo '${{ vars.MLUA_CARGO_CONFIG_EXTRA_SETTINGS }}' > .cargo/config.toml
# TODO can we make it prettier?
- run: cargo build --release --features=lua
- uses: actions/upload-artifact@v4
with:
name: codemp-lua-${{ matrix.platform.target }}
path: target/release/${{ matrix.platform.filename }}

# TODO this just copies files on our server, maybe publish on luarocks? maybe do it properly with versions
publish:
runs-on: ubuntu-latest
needs: [build]
needs: [build, build-macos]
steps:
- uses: webfactory/ssh-agent@v0.9.0
with:
Expand Down

0 comments on commit 73f6ed7

Please sign in to comment.