Skip to content

Commit

Permalink
ci: fix luajit installation
Browse files Browse the repository at this point in the history
  • Loading branch information
ligurio committed Oct 21, 2024
1 parent 3894192 commit 2c2c70b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
LUA: ['luajit-2.0.5', 'tarantool']
LUA: ['luajit', 'tarantool']
fail-fast: false
runs-on: [ubuntu-latest]
steps:
Expand All @@ -25,10 +25,8 @@ jobs:
tarantool-version: '2.10'

- name: Setup LuaJIT (${{ matrix.LUA }})
if: matrix.LUA != 'tarantool'
uses: leafo/gh-actions-lua@v8
with:
luaVersion: ${{ matrix.LUA }}
if: matrix.LUA == 'luajit'
run: sudo apt install -y luajit

- name: Setup luarocks
run: sudo apt install -y luarocks
Expand Down

0 comments on commit 2c2c70b

Please sign in to comment.