Release 0.9.4 - uses latest sibernetic and c302, tested with both Intel and AMD drivers #3
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 Image Test Build - Intel drivers | |
on: | |
push: | |
branches: [ master, dev* ] | |
pull_request: | |
branches: [ master, dev* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: | | |
chmod a+w output/ | |
ls -alt | |
./build_intel.sh | |
- name: Info on Docker images | |
run: | | |
docker -v | |
docker images | |
- name: Run the Docker image | |
run: | | |
./run.sh | |
- name: Info on generated files | |
run: | | |
ls -alth | |
ls -alth output | |
ls -alth output/* | |
more output/*/report.json |