aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/bit32-multi-arch-tests.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/bit32-multi-arch-tests.yml b/.github/workflows/bit32-multi-arch-tests.yml
index 3489b89..aff29db 100644
--- a/.github/workflows/bit32-multi-arch-tests.yml
+++ b/.github/workflows/bit32-multi-arch-tests.yml
@@ -29,7 +29,7 @@ jobs:
29 mkdir -p ".install/${{ matrix.arch }}" 29 mkdir -p ".install/${{ matrix.arch }}"
30 install: | 30 install: |
31 apt-get update -q -y 31 apt-get update -q -y
32 apt-get install -q -y curl unzip build-essential libreadline-dev libncurses-dev 32 apt-get install -q -y curl unzip build-essential libreadline-dev libncurses-dev clang
33 rm -rf /var/lib/apt/lists/* 33 rm -rf /var/lib/apt/lists/*
34 run: | 34 run: |
35 v() { 35 v() {
@@ -38,6 +38,7 @@ jobs:
38 echo -e "\033[0m" >&2 38 echo -e "\033[0m" >&2
39 "$@" 39 "$@"
40 } 40 }
41 export CC=clang
41 if [ "${{ steps.lua-cache.outputs.cache-hit }}" != true ]; then 42 if [ "${{ steps.lua-cache.outputs.cache-hit }}" != true ]; then
42 (set -o pipefail; cd ".install/${{ matrix.arch }}" && v curl --fail --silent --location "http://www.lua.org/ftp/lua-${{ matrix.luaVersion }}.tar.gz" | tar xzpf -) 43 (set -o pipefail; cd ".install/${{ matrix.arch }}" && v curl --fail --silent --location "http://www.lua.org/ftp/lua-${{ matrix.luaVersion }}.tar.gz" | tar xzpf -)
43 (cd ".install/${{ matrix.arch }}/lua-${{ matrix.luaVersion }}" && v make linux) 44 (cd ".install/${{ matrix.arch }}/lua-${{ matrix.luaVersion }}" && v make linux)