ci: Don't bother doing user-local install in ephemeral runner

master
Caleb Maclennan 2022-03-19 22:42:25 +03:00
parent 52c72694c2
commit f9e1d03f3c
No known key found for this signature in database
GPG Key ID: B538286DE04ECFE5
1 changed files with 2 additions and 3 deletions

View File

@ -24,13 +24,12 @@ jobs:
luaVersion: ${{ matrix.luaVersion }} luaVersion: ${{ matrix.luaVersion }}
- name: Setup luarocks - name: Setup luarocks
uses: leafo/gh-actions-luarocks@v4 uses: leafo/gh-actions-luarocks@v4
- name: Make and install locally - name: Make and install
run: | run: |
export DEBUG=DEBUG export DEBUG=DEBUG
luarocks --local make -- luasocket-scm-3.rockspec luarocks make -- luasocket-scm-3.rockspec
- name: Run regression tests - name: Run regression tests
run: | run: |
eval $(luarocks --local path)
cd test cd test
lua hello.lua lua hello.lua
lua testsrvr.lua > /dev/null & lua testsrvr.lua > /dev/null &