-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lua action needs a compiler installed, multiarch linux deps
- Loading branch information
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Prepare environment | ||
uses: microsoft/[email protected] | ||
|
||
- uses: leafo/gh-actions-lua@v10 | ||
with: | ||
luaVersion: 5.4 | ||
|
@@ -65,9 +68,6 @@ jobs: | |
# cd .\luarocks\luarocks-3.9.2-win32\ | ||
# .\win32\lua5.1\bin\lua5.1.exe .\install.bat /L /NOADMIN /P ..\lr-install | ||
|
||
- name: Prepare environment | ||
uses: microsoft/[email protected] | ||
|
||
- name: Build | ||
working-directory: ${{ github.workspace }} | ||
shell: bash | ||
|
@@ -110,10 +110,12 @@ jobs: | |
sudo dpkg --add-architecture i386 | ||
sudo apt-get -qq update | ||
sudo apt-get -y install gcc-multilib g++-multilib | ||
sudo apt-get -y install libgtk2.0-dev:i386 libnotify-dev:i386 | ||
else | ||
sudo apt-get -qq update | ||
sudo apt-get -y install libgtk2.0-dev libnotify-dev | ||
fi | ||
sudo apt-get -y install scons lua5.4 lua-filesystem libgtk2.0-dev libnotify-dev | ||
sudo apt-get -y install scons lua5.4 lua-filesystem | ||
- name: Build | ||
working-directory: ${{ github.workspace }} | ||
|