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 2732996 commit a3c8432Copy full SHA for a3c8432
.github/workflows/build.yml
@@ -35,6 +35,11 @@ jobs:
35
container:
36
image: ${{ matrix.container }}
37
steps:
38
+ - uses: actions/checkout@v4
39
+ with:
40
+ submodules: recursive
41
+ - uses: actboy168/setup-luamake@master
42
+
43
- name: Install aarch64-linux-gnu
44
if: ${{ matrix.platform == 'linux-arm64' && matrix.libc != 'musl' }}
45
run: |
@@ -53,10 +58,6 @@ jobs:
53
58
sudo apt update
54
59
sudo apt install ninja-build
55
60
56
- - uses: actions/checkout@v4
57
- with:
- submodules: recursive
-
61
- name: Build for Windows
62
if: ${{ matrix.target == 'windows' }}
63
run: .\make.bat ${{ matrix.platform }}
@@ -69,7 +70,6 @@ jobs:
69
70
- name: Build for macOS
71
if: ${{ matrix.target == 'darwin' }}
72
- brew install ninja
73
./make.sh ${{ matrix.platform }}
74
75
- name: Build for x64 glibc
0 commit comments