Mercurial > hg > monetdb-java
diff .github/workflows/macos.yml @ 896:400d35258147
It would be good if on MacOS we also run the tests. Lets see what happens.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 25 Apr 2024 15:30:57 +0200 (12 months ago) |
parents | 3b215a009634 |
children | e85dcb3ea4a6 |
line wrap: on
line diff
--- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -20,4 +20,14 @@ jobs: distribution: liberica - name: Build - run: make all + run: make + + - name: Create jar symlink + run: ln -s monetdb-jdbc*.jar monetdb-jdbc.jar + working-directory: jars + + - name: Run JDBC_API_Tester + run: java -cp jars/monetdb-jdbc.jar:jars/jdbctests.jar JDBC_API_Tester 'jdbc:monetdb://localhost:50000/monetdb?user=monetdb&password=monetdb' + + - name: Run OnClientTester + run: java -cp jars/monetdb-jdbc.jar:jars/jdbctests.jar OnClientTester 'jdbc:monetdb://localhost:50000/monetdb?user=monetdb&password=monetdb' -v