summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2021-04-16 22:26:37 +0100
committerAlex Orlenko <zxteam@protonmail.com>2021-04-16 22:27:28 +0100
commite26cec5db9d807f6e8fc284912d2d72dace71f65 (patch)
tree4af93190c205eadda275617f1c03283a4f265ea9 /.github/workflows/main.yml
parent0bd36b42e7d416f2821950fb43b0086643366818 (diff)
downloadmlua-e26cec5db9d807f6e8fc284912d2d72dace71f65.zip
Drop 'feature(link_args)' (removed from nightly). Don't run tests for LuaJIT 2.0.5
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 8757522..8bbdd9c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -123,7 +123,6 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Run ${{ matrix.lua }} tests
- if: ${{ matrix.os != 'macos-latest' || matrix.lua != 'luajit' }}
run: |
cargo test --release --features "${{ matrix.lua }} vendored"
cargo test --release --features "${{ matrix.lua }} vendored async send serialize"
@@ -135,27 +134,6 @@ jobs:
TRYBUILD=overwrite cargo test --release --features "${{ matrix.lua }} vendored async send serialize" -- --ignored
shell: bash
- test_luajit_macos:
- name: Test LuaJIT on macOS
- runs-on: macos-latest
- needs: build
- steps:
- - uses: actions/checkout@v2
- - uses: actions-rs/toolchain@v1
- with:
- toolchain: nightly
- target: x86_64-apple-darwin
- override: true
- - name: Run LuaJIT 2.0.5 tests
- run: |
- brew install luajit
- cargo test --tests --release --features "luajit async send serialize" -- --test-threads=1
- shell: bash
- - name: Run LuaJIT vendored tests
- run: |
- cargo test --release --features "luajit vendored async send serialize"
- shell: bash
-
test_modules:
name: Test modules
runs-on: ${{ matrix.os }}