diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2024-03-11 13:18:44 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2024-03-11 19:46:57 +0000 |
commit | a59747ce4e0379fb696d882aac2869e2c5b026a1 (patch) | |
tree | 9f3c10d4893d648f3a3bd3060814c92dd95853b4 /.github | |
parent | 24a8f07810f2b961b2f14b013bac7a5365354b40 (diff) | |
download | luarocks-a59747ce4e0379fb696d882aac2869e2c5b026a1.tar.gz luarocks-a59747ce4e0379fb696d882aac2869e2c5b026a1.tar.bz2 luarocks-a59747ce4e0379fb696d882aac2869e2c5b026a1.zip |
ci: add binary build smoke test
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 07803faf..7b722abe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -82,3 +82,19 @@ jobs: | |||
82 | ./makedist dev | 82 | ./makedist dev |
83 | ./smoke_test.sh luarocks-dev.tar.gz | 83 | ./smoke_test.sh luarocks-dev.tar.gz |
84 | 84 | ||
85 | ############################################################################## | ||
86 | BinaryBuild: | ||
87 | runs-on: "ubuntu-latest" | ||
88 | steps: | ||
89 | - uses: actions/checkout@master | ||
90 | |||
91 | - uses: leafo/gh-actions-lua@v8.0.0 | ||
92 | with: | ||
93 | luaVersion: "5.4" | ||
94 | |||
95 | - name: Binary Build Smoke Test | ||
96 | run: | | ||
97 | ./configure | ||
98 | ./makedist dev | ||
99 | ./smoke_test.sh luarocks-dev.tar.gz binary | ||
100 | |||