aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2024-09-24 09:00:05 -0500
committerCalvin Rose <calsrose@gmail.com>2024-09-24 09:23:08 -0500
commiteaf0553c2df0f124ae8612aeae1b10858d63b6b9 (patch)
tree471c222450095158685cce6ff776300a2fe15367 /.github/workflows
parentUpdate call to msiexec (diff)
See msiexec logs.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 799276f..e211b93 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -53,13 +53,13 @@ jobs:
run: curl -fSLo janet.msi https://github.com/janet-lang/janet/releases/download/v1.36.0/janet-1.36.0-windows-x64-installer.msi
- name: Install Janet
shell: cmd
- run: msiexec /i janet.msi /passive /quiet /norestart ALLUSERS=1 && refreshenv
+ run: msiexec /quiet /i janet.msi ALLUSERS=1
- name: Build Spork
shell: cmd
- run: cd spork && janet -l ./bundle -e "(build)"
+ run: cd spork && "C:\\Program Files\\Janet\\bin\\janet.exe" -l ./bundle -e "(build)"
- name: Test Install
shell: cmd
- run: janet -e "(bundle/install `spork`)"
+ run: "C:\\Program Files\\Janet\\bin\\janet.exe" -e "(bundle/install `spork`)"
- name: Run Tests
shell: cmd
- run: cd spork && janet -l ./bundle -e "(test)"
+ run: cd spork && "C:\\Program Files\\Janet\\bin\\janet.exe" -l ./bundle -e "(test)"