Skip to content

Commit

Permalink
Add a new config system (#638)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde authored May 31, 2024
1 parent 2e199ee commit faa29a5
Show file tree
Hide file tree
Showing 44 changed files with 1,587 additions and 891 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ jobs:
runs-on: ubicloud-standard-16
env:
DATABASE_URL: "postgres://arroyo:arroyo@localhost:5432/arroyo"
DATABASE_USER: arroyo
DATABASE_PASSWORD: arroyo
DATABASE_HOST: localhost
DATABASE_NAME: arroyo
steps:
- name: Check out
uses: actions/checkout@v3
Expand Down Expand Up @@ -98,12 +94,12 @@ jobs:
- name: Integ postgres
run: |
mkdir /tmp/arroyo-integ
DISABLE_TELEMETRY=true CHECKPOINT_URL=file:///tmp/arroyo-integ ARTIFACT_URL=file:///tmp/artifacts target/debug/arroyo-bin cluster &
ARROYO__DISABLE_TELEMETRY=true ARROYO__CHECKPOINT_URL=file:///tmp/arroyo-integ ARROYO__COMPILER__ARTIFACT_URL=file:///tmp/artifacts target/debug/arroyo-bin cluster &
cargo nextest run --package integ -E 'kind(test)'
- name: Integ sqlite
run: |
killall arroyo-bin
DISABLE_TELEMETRY=true CHECKPOINT_URL=file:///tmp/arroyo-integ ARTIFACT_URL=file:///tmp/artifacts DATABASE=sqlite target/debug/arroyo-bin cluster &
ARROYO__DISABLE_TELEMETRY=true ARROYO__CHECKPOINT_URL=file:///tmp/arroyo-integ ARROYO__COMPILER__ARTIFACT_URL=file:///tmp/artifacts ARROYO__DATABASE__TYPE=sqlite target/debug/arroyo-bin cluster &
timeout=10; while ! nc -z localhost 8000 && [ $timeout -gt 0 ]; do sleep 1; timeout=$((timeout - 1)); done; [ $timeout -gt 0 ]
cargo nextest run --package integ -E 'kind(test)'
Expand Down
Loading

0 comments on commit faa29a5

Please sign in to comment.