Skip to content

Commit 3fcbdc8

Browse files
committed
Remove dependency on Lua from workflows
1 parent 3a7db0f commit 3fcbdc8

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
sudo apt-get update
26-
sudo apt-get install lua5.1 libc6-dev-i386
26+
sudo apt-get install libc6-dev-i386
2727
- name: Build artifact
2828
run: make ${{ matrix.target }}
2929
- name: Upload artifact
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install dependencies
5050
run: |
5151
sudo apt-get update
52-
sudo apt-get install lua5.1 libc6-dev-i386 gcc-mingw-w64
52+
sudo apt-get install libc6-dev-i386 gcc-mingw-w64
5353
- name: Build artifact
5454
run: make ${{ matrix.target }}
5555
env:
@@ -76,8 +76,6 @@ jobs:
7676
- uses: actions/checkout@v3
7777
with:
7878
submodules: true
79-
- name: Install dependencies
80-
run: brew install lua@5.1
8179
- name: Build artifact
8280
run: make ${{ matrix.target }}
8381
env:
@@ -110,7 +108,7 @@ jobs:
110108
- name: Install dependencies
111109
run: |
112110
sudo apt-get update
113-
sudo apt-get install lua5.1 libc6-dev-i386
111+
sudo apt-get install libc6-dev-i386
114112
- name: Setup NDK
115113
run: |
116114
$ANDROID_HOME/tools/bin/sdkmanager --install "ndk;$ANDROID_NDK_VERSION"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install dependencies
1919
run: |
2020
sudo apt-get update
21-
sudo apt-get install lua5.1 libc6-dev-i386
21+
sudo apt-get install libc6-dev-i386
2222
- name: Install Godot
2323
uses: vitorgus/setup-godot@v1
2424
with:

0 commit comments

Comments
 (0)