From ce3a3f8bd98144477e4dd1d0601211f29d923138 Mon Sep 17 00:00:00 2001 From: leaf corcoran Date: Sun, 22 Nov 2020 17:56:09 -0800 Subject: [PATCH] fetch binary deps --- .github/workflows/windows_exe.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/windows_exe.yml b/.github/workflows/windows_exe.yml index e170ebf..97579be 100644 --- a/.github/workflows/windows_exe.yml +++ b/.github/workflows/windows_exe.yml @@ -23,6 +23,16 @@ jobs: tar -xZf lua-5.1.5.tar.gz cd lua-5.1.5; make PLAT=mingw + - name: Get LPeg + run: | + curl -o lpeg.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz + tar -xZf lpeg.tar.gz + + - name: Get Luafilesystem + run: | + curl -o luafilesystem.tar.gz https://github.com/keplerproject/luafilesystem/archive/v1_8_0.tar.gz + tar -xZf luafilesystem.tar.gz + - name: List Files run: Get-ChildItem -Recurse