# HG changeset patch # User Martin van Dinther <martin.van.dinther@monetdbsolutions.com> # Date 1714051857 -7200 # Node ID 400d35258147cf01a3143a1f89b1c241deca97c1 # Parent 7a8f6d3d66804cf394d35a941bc1d3bbf2aa98b7 It would be good if on MacOS we also run the tests. Lets see what happens. diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml --- 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