Skip to content

Commit

Permalink
finish pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: Karl Hepworth <karl@previousnext.com.au>
  • Loading branch information
Karl Hepworth committed Jun 27, 2024
1 parent 836a3db commit 64f621b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/functional-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ jobs:
- name: Import database
run: mysql -uroot -proot test_db < .github/workflows/functional-test.sql

- name: Verify database import
run: mysql -uroot -proot -e 'USE test_db; SHOW TABLES;'

- name: Build MTK
run: make build

Expand All @@ -42,6 +39,9 @@ jobs:
run: |
sed '$d' mtk-dump.sql > mtk-dump-clean.sql
- name: Create Database
run: mysql -e 'CREATE DATABASE test_db;' -uroot -proot

- name: Import database
run: mysql -uroot -proot test_db < mtk-dump-clean.sql

Expand Down

0 comments on commit 64f621b

Please sign in to comment.