Use default worm_crawl_half_resolution #269
This file contains hidden or 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 Build and Run | |
on: | |
push: | |
branches: [ master, dev*, experimental, test* ] | |
pull_request: | |
branches: [ master, dev*, experimental, test* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: | | |
chmod a+w output/ | |
ls -alth | |
./build.sh | |
- name: Info on Docker images | |
run: | | |
docker -v | |
docker images | |
- name: Run the Docker image with the falling cube | |
run: | | |
./run.sh -d 20 -c demo1 | |
- name: Run the Docker image with a worm | |
run: | | |
./run.sh | |
- name: Info on generated files | |
run: | | |
ls -alth | |
ls -alth output | |
ls -alth output/* | |
more output/*/report.json |