-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependencies need explicitly installing due to changes in luacasc.
- Loading branch information
Showing
1 changed file
with
21 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -16,10 +16,30 @@ jobs: | |
shopt -s extglob | ||
rm -r !(*.git*|*.sublime-*|*.md) | ||
- name: Install Packages | ||
run: sudo apt-get install libcurl4-openssl-dev | ||
|
||
- name: Install Lua | ||
uses: leafo/[email protected] | ||
with: | ||
luaVersion: "5.2" | ||
luaVersion: "5.1" | ||
|
||
- name: Install Luarocks | ||
uses: leafo/gh-actions-luarocks@v4 | ||
with: | ||
luarocksVersion: "3.11.0" | ||
|
||
- name: Install lua-zlib | ||
run: luarocks install lua-zlib | ||
|
||
- name: Install luacurl | ||
run: luarocks install luacurl CURL_INCDIR=/usr/include/$(gcc -dumpmachine) | ||
|
||
- name: Install LuaFileSystem | ||
run: luarocks install LuaFileSystem | ||
|
||
- name: Install md5 | ||
run: luarocks install md5 | ||
|
||
- name: Checkout InterfaceExport | ||
uses: actions/checkout@v3 | ||
|