We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 513a9c4 commit 525dc67Copy full SHA for 525dc67
1 file changed
.github/workflows/sqlancer-test-pipelines.yml
@@ -53,7 +53,8 @@ jobs:
53
restore-keys: ${{ runner.os }}-m2-
54
55
- name: Build SQLancer
56
- run: mvn -B package -DskipTests=true -f sqlancer/pom.xml
+ working-directory: sqlancer
57
+ run: mvn -B package -DskipTests
58
59
- name: Initialize Citus cluster
60
run: |
@@ -81,17 +82,11 @@ jobs:
81
82
gosu circleci psql -c "SELECT * from citus_add_node('localhost', 9701);" -p 9700 -d test
83
gosu circleci psql -c "SELECT * from citus_add_node('localhost', 9702);" -p 9700 -d test
84
- - name: Dump workspace layout
85
- run: |
86
- pwd
87
- ls -R .
88
-
89
90
- name: Run SQLancer tests
91
working-directory: sqlancer
92
env:
93
CITUS_AVAILABLE: true
94
- run: mvn -f sqlancer/pom.xml -Dtest=TestCitus test
+ run: mvn -Dtest=TestCitus test
95
96
- name: Publish Logs
97
if: ${{ always() }}
0 commit comments