diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2024-12-18 02:42:17 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2024-12-18 05:45:06 +0000 |
commit | 50b30371a307652105982b1a97a77dbe689d529e (patch) | |
tree | e2f265c80470eb63a8dc13885bc0bf717f3ada0b | |
parent | 70cd6c034a197df7f32f2f7513f4a5db8570ceb2 (diff) | |
download | luasystem-50b30371a307652105982b1a97a77dbe689d529e.tar.gz luasystem-50b30371a307652105982b1a97a77dbe689d529e.tar.bz2 luasystem-50b30371a307652105982b1a97a77dbe689d529e.zip |
ci: ensure we don't try installing old version of luasystem
-rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 13721b4..7ce2825 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -95,15 +95,14 @@ jobs: | |||
95 | with: | 95 | with: |
96 | luarocksVersion: "3.11.0" | 96 | luarocksVersion: "3.11.0" |
97 | 97 | ||
98 | - name: dependencies | ||
99 | run: | | ||
100 | luarocks install busted | ||
101 | |||
102 | - name: install | 98 | - name: install |
103 | run: | | 99 | run: | |
104 | luarocks remove --force luasystem | ||
105 | luarocks make | 100 | luarocks make |
106 | 101 | ||
102 | - name: test dependencies | ||
103 | run: | | ||
104 | luarocks install busted | ||
105 | |||
107 | - name: test | 106 | - name: test |
108 | run: | | 107 | run: | |
109 | busted --exclude-tags=manual --Xoutput "--color" | 108 | busted --exclude-tags=manual --Xoutput "--color" |