0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-21 21:48:21 -05:00

🛠️ fix: fix luajit installation step

This commit is contained in:
neon_arch 2023-08-30 17:58:16 +03:00
parent 9fdb1a3407
commit 7ebd0cd780
2 changed files with 8 additions and 6 deletions

View File

@ -21,9 +21,10 @@ jobs:
- stable - stable
steps: steps:
- uses: leafo/gh-actions-lua@v10 - name: Install LuaJIT and Lua
with: run: |
luaVersion: 'luajit' sudo apt-get update
sudo apt-get install -y --no-install-recommends liblua5.4-dev liblua5.3-dev liblua5.2-dev liblua5.1-0-dev libluajit-5.1-dev
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install stable --profile minimal - run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2

View File

@ -13,9 +13,10 @@ jobs:
name: Rust project name: Rust project
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: leafo/gh-actions-lua@v10 - name: Install LuaJIT and Lua
with: run: |
luaVersion: 'luajit' sudo apt-get update
sudo apt-get install -y --no-install-recommends liblua5.4-dev liblua5.3-dev liblua5.2-dev liblua5.1-0-dev libluajit-5.1-dev
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install minimal stable with clippy and rustfmt - name: Install minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1