From 16a30556dfa8e27c82d026bd63467f82d2e37a1c Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sun, 22 May 2022 00:52:11 +0200 Subject: Formally drop support for building with upstream Irrlicht It stopped working with (at least) the last commit. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 70340d82d..1717a282d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -132,7 +132,7 @@ jobs: - name: Install deps run: | source ./util/ci/common.sh - install_linux_deps --old-irr clang-9 + install_linux_deps clang-9 - name: Build prometheus-cpp run: | -- cgit v1.2.3 From 76000e676bde0191d64dc0afd2f3ae74bb6c40b5 Mon Sep 17 00:00:00 2001 From: Lars Müller <34514239+appgurueu@users.noreply.github.com> Date: Sat, 28 May 2022 11:31:56 +0200 Subject: Lua workflow: Use Leafo's Luarocks action instead of installing outdated packages which lead to failing workflows --- .github/workflows/lua.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/lua.yml b/.github/workflows/lua.yml index 3af4a6ee7..2a728f2d3 100644 --- a/.github/workflows/lua.yml +++ b/.github/workflows/lua.yml @@ -42,9 +42,10 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - - name: Install luarocks - run: | - sudo apt-get update && sudo apt-get install -y luarocks + - uses: leafo/gh-actions-lua@v9 + with: + luaVersion: "5.1.5" + - uses: leafo/gh-actions-luarocks@v4 - name: Install luarocks tools run: | -- cgit v1.2.3