Skip to content

Commit 8a99eb2

Browse files
committed
Attempt to fix github CI
1 parent e72daa2 commit 8a99eb2

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
$CXX --version
2929
- name: Script
3030
run: |
31-
make -j "$(nproc)"
32-
./build/gpuowl -h
31+
make
32+
./build-release/gpuowl -h
3333
- uses: actions/upload-artifact@v3
3434
if: always()
3535
with:
@@ -55,8 +55,8 @@ jobs:
5555
- uses: actions/checkout@v3
5656
- name: Script
5757
run: |
58-
make gpuowl-win.exe
59-
.\gpuowl-win.exe -h
58+
make exe
59+
.\build-release\gpuowl-win.exe -h
6060
- uses: actions/upload-artifact@v3
6161
if: always()
6262
with:

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ matrix:
1717
install: choco install python3 --version=3.8.8
1818
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
1919
script:
20-
- mingw32-make gpuowl-win.exe
21-
- ./gpuowl-win.exe -h
20+
- mingw32-make exe
21+
- ./build-release/gpuowl-win.exe -h
2222
allow_failures:
2323
- compiler: gcc
2424
os: linux

0 commit comments

Comments
 (0)