Release 0.9.4 - uses latest sibernetic and c302, tested with both Intel and AMD drivers #7
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: Docker Pull Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run the Docker image | |
run: | | |
# Don't build. Will be pulled from Dockerhub when run below | |
./run.sh | |
- name: Info on Docker images | |
run: | | |
docker -v | |
docker images | |
- name: Run the Docker image - no c302 | |
run: | | |
# Shouldn't need to pull again. | |
./stop.sh | |
./run-quick.sh | |
- name: Info on Docker images | |
run: | | |
docker -v | |
docker images | |
- name: Info on generated files | |
run: | | |
ls -alth | |
ls -alth output | |
ls -alth output/* | |
more output/* |