We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d96bda commit dfd83b4Copy full SHA for dfd83b4
.github/workflows/bit32-multi-arch-tests.yml
@@ -29,7 +29,7 @@ jobs:
29
mkdir -p ".install/${{ matrix.arch }}"
30
install: |
31
apt-get update -q -y
32
- apt-get install -q -y curl unzip build-essential libreadline-dev libncurses-dev
+ apt-get install -q -y curl unzip build-essential libreadline-dev libncurses-dev clang
33
rm -rf /var/lib/apt/lists/*
34
run: |
35
v() {
@@ -38,6 +38,7 @@ jobs:
38
echo -e "\033[0m" >&2
39
"$@"
40
}
41
+ export CC=clang
42
if [ "${{ steps.lua-cache.outputs.cache-hit }}" != true ]; then
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 -)
44
(cd ".install/${{ matrix.arch }}/lua-${{ matrix.luaVersion }}" && v make linux)
0 commit comments