Skip to content

Commit b79a899

Browse files
committed
ci: improved flows
1 parent 07d742c commit b79a899

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ jobs:
108108
- name: Build with Scala ${{ matrix.scala }}
109109
run: |
110110
# Cross-compile core modules (2.12 and 3.3 unsupported - removed)
111-
sbt -batch "++${{ matrix.scala }}.* core/compile core/test"
112-
sbt -batch "++${{ matrix.scala }}.* infrastructure/compile infrastructure/test"
111+
sbt -batch ++${{ matrix.scala }}.* core/compile core/test
112+
sbt -batch ++${{ matrix.scala }}.* infrastructure/compile infrastructure/test
113113
114114
nightly-benchmarks:
115115
timeout-minutes: 30
@@ -130,7 +130,7 @@ jobs:
130130
- name: Run benchmarks
131131
run: |
132132
if [ -d "modules/performance-benchmarks" ]; then
133-
sbt -batch "performance-benchmarks/Jmh/run -i 3 -wi 3 -f1 -t1"
133+
sbt -batch "performanceBenchmarks/Jmh/run -i 3 -wi 3 -f1 -t1"
134134
else
135135
echo "⚠️ No benchmark module found, skipping"
136136
fi

flowforge.g8/src/main/g8/ops/marquez/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ lineage-status:
3232
docker compose -f docker-compose.yml ps
3333
@echo ""
3434
@echo "Service Health Checks:"
35-
@echo "• PostgreSQL: $$(curl -s -o /dev/null -w '%{http_code}' http://localhost:5432 2>/dev/null || echo 'DOWN')"
36-
@echo "• Marquez API: $$(curl -s -o /dev/null -w '%{http_code}' http://localhost:5000/api/v1/namespaces 2>/dev/null || echo 'DOWN')"
37-
@echo "• Marquez Web: $$(curl -s -o /dev/null -w '%{http_code}' http://localhost:3000 2>/dev/null || echo 'DOWN')"
35+
@echo "• PostgreSQL: $$(curl -s -o /dev/null -w \'%{http_code}\' http://localhost:5432 2>/dev/null || echo \'DOWN\')"
36+
@echo "• Marquez API: $$(curl -s -o /dev/null -w \'%{http_code}\' http://localhost:5000/api/v1/namespaces 2>/dev/null || echo \'DOWN\')"
37+
@echo "• Marquez Web: $$(curl -s -o /dev/null -w \'%{http_code}\' http://localhost:3000 2>/dev/null || echo \'DOWN\')"
3838

3939
# Clean up all data (removes PostgreSQL volume)
4040
lineage-clean:

0 commit comments

Comments
 (0)