Changeset: 2315f5339dcb for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/2315f5339dcb Modified Files: .github/workflows/linux.yml Branch: default Log Message:
more windows ci testing diffs (49 lines): diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -83,6 +83,17 @@ jobs: make install -j3 if: runner.os == 'macOS' + - name: ctest + run: | + cd build + cmake --build . --target test + if: runner.os != 'Windows' + + - name: mtest + run: | + PATH=$HOME/MDB/bin:$PATH $HOME/MDB/bin/Mtest.py -r --debug=0 --ci --no-html --TSTTRGBASE=. + if: runner.os != 'Windows' + - name: choco packages run: | choco install winflexbison3 @@ -98,25 +109,14 @@ jobs: cmake --build . --target install if: runner.os == 'Windows' - - name: ctest - run: | - cd build - cmake --build . --target test - if: runner.os != 'Windows' - - name: install pymonetdb run: pip3 install pymonetdb - name: mtest - run: | - PATH=$HOME/MDB/bin:$PATH $HOME/MDB/bin/Mtest.py -r --debug=0 --ci --no-html --TSTTRGBASE=. - if: runner.os != 'Windows' - - - name: mtest shell: pwsh run: | - $Env:PATH = 'C:\MDB\lib;C:\MDB\lib\monetdb5;C:\MDB\bin;' + $Env:PATH - Mtest.py -r --debug=0 --ci --no-html --TSTTRGBASE=. + $env:PATH = 'C:\MDB\lib;C:\MDB\lib\monetdb5;C:\MDB\bin;' + $env:PATH + C:\MDB\bin\Mtest.py -r --debug=0 --ci --no-html --TSTTRGBASE=. if: runner.os == 'Windows' - name: Tar files _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org