Skip to content

Commit

Permalink
sep db / import steps
Browse files Browse the repository at this point in the history
  • Loading branch information
kasbohm committed May 27, 2024
1 parent f7366ae commit 12c7282
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/test_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,14 @@ jobs:
- name: Make 3rdparty
run: make 3rdparty

- name: Run & Import DB
- name: Start DB
run: |
make run_db &
P1=$!
sleep 30
wait $P1
- name: Run & Import DB
run: |
set -e # Enable error handling
make run_dbimport
import_status=$?
wait $P1
if [ $import_status -eq 0 ]; then
echo "Data import succeeded."
else
echo "Data import failed."
exit 1
fi

0 comments on commit 12c7282

Please sign in to comment.