Skip to content

Commit

Permalink
Update workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
zduny committed Sep 19, 2023
1 parent 014d48f commit b668c19
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:

- name: Run web tests
working-directory: ./mezzenger-tests
run: ./build_and_run.sh
run: ./build_and_run_ci.sh
8 changes: 8 additions & 0 deletions mezzenger-tests/build_and_run_ci.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
set -e

echo "Building..."
./build.sh

echo "\nRunning..."
./run_ci.sh
6 changes: 6 additions & 0 deletions mezzenger-tests/run_ci.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
set -e

sleep 1 && chrome http://localhost:3030 &
sleep 1 && ./tests_client &
./tests_server

0 comments on commit b668c19

Please sign in to comment.