Mercurial > hg > monetdb-java
changeset 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 (11 months ago) |
parents | 7a8f6d3d6680 |
children | 9b9b3dfba916 |
files | .github/workflows/macos.yml |
diffstat | 1 files changed, 11 insertions(+), 1 deletions(-) [+] |
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