Skip to content

Commit

Permalink
testing demo workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wangpatrick57 committed Oct 30, 2024
1 parent 2bab715 commit dd5384f
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/tests_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [main]

jobs:
ci:
_setup: &setup
# The code for the self-hosted runners is at https://github.com/wangpatrick57/dbgym-runners.
runs-on: self-hosted

Expand All @@ -33,6 +33,16 @@ jobs:
run: |
./dependencies/install_dependencies.sh
demo:
<<: *setup

- name: Test
run: |
echo hi
ci:
<<: *setup

- name: Check formatting
run: |
./scripts/check_format.sh
Expand All @@ -50,11 +60,12 @@ jobs:
- name: Run integration tests
# Integration tests do require external systems to be running (most commonly a database instance).
# Unlike end-to-end tests though, they test a specific module in a detailed manner, much like a unit test does.
#
# We set `INTENDED_DBDATA_HARDWARE` so that it's seen when `integtest_pg_conn.py` executes `./tune/env/set_up_env_integtests.sh`.
env:
# We set `INTENDED_DBDATA_HARDWARE` so that it's seen when `integtest_pg_conn.py` executes `./tune/env/set_up_env_integtests.sh`.
INTENDED_DBDATA_HARDWARE: ssd
run: |
. "$HOME/.cargo/env"
export INTENDED_DBDATA_HARDWARE=ssd
export
./scripts/run_integration_tests.sh
- name: Run end-to-end tests
Expand Down

0 comments on commit dd5384f

Please sign in to comment.