From 7ebd0cd7807c60ce706ee3de4f2a8cbca2fc3e88 Mon Sep 17 00:00:00 2001 From: neon_arch Date: Wed, 30 Aug 2023 17:58:16 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20fix:=20fix=20luajit=20i?= =?UTF-8?q?nstallation=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rust.yml | 7 ++++--- .github/workflows/rust_format.yml | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 40747b5..5d538ea 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -21,9 +21,10 @@ jobs: - stable steps: - - uses: leafo/gh-actions-lua@v10 - with: - luaVersion: 'luajit' + - name: Install LuaJIT and Lua + run: | + 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 - run: rustup toolchain install stable --profile minimal - uses: Swatinem/rust-cache@v2 diff --git a/.github/workflows/rust_format.yml b/.github/workflows/rust_format.yml index 7e23fbb..50debec 100644 --- a/.github/workflows/rust_format.yml +++ b/.github/workflows/rust_format.yml @@ -13,9 +13,10 @@ jobs: name: Rust project runs-on: ubuntu-latest steps: - - uses: leafo/gh-actions-lua@v10 - with: - luaVersion: 'luajit' + - name: Install LuaJIT and Lua + run: | + 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 - name: Install minimal stable with clippy and rustfmt uses: actions-rs/toolchain@v1