From 066753d15fb088aeba04ec5be134a4a7fee6bbaa Mon Sep 17 00:00:00 2001 From: Martin van Dinther Date: Thu, 25 Apr 2024 15:30:57 +0200 Subject: [PATCH] It would be good if on MacOS we also run the tests. Lets see what happens. --- .github/workflows/macos.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 5c2febe..85e6eff 100644 --- 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