Skip to content

Commit

Permalink
See msiexec logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpakin committed Sep 24, 2024
1 parent 5f959c9 commit eaf0553
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"

0 comments on commit eaf0553

Please sign in to comment.