dgamelaunch-config CI #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dgamelaunch-config CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: "0 2 * * 1" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Try to build the testing-container setup and see if it can | |
# be started healthily | |
- 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` |