Skip to content

Commit

Permalink
build: tweak CI
Browse files Browse the repository at this point in the history
This separates the build / test steps, so that it's easier to see what's
happening.
  • Loading branch information
rawlins committed Mar 21, 2024
1 parent baeed8e commit d2d68c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:

# Try to build the testing-container setup and see if it can
# be started healthily
- name: Docker container test
- name: Docker container build
run: |
utils/build-testing-container.sh --no-tty
- name: Docker container test
run: |
docker run -d --privileged dgl-test --background
sleep 32 # TODO: can we check this more quickly?
docker ps --filter "health=healthy" | grep `docker ps -lq`

0 comments on commit d2d68c7

Please sign in to comment.