-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #333 from openworm/development
Remove JNML_HOME; test pulling image from dockerhub
- Loading branch information
Showing
4 changed files
with
45 additions
and
5 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Docker Pull Test | ||
|
||
on: | ||
push: | ||
branches: [ master, dev* ] | ||
pull_request: | ||
branches: [ master, dev* ] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Run the Docker image | ||
run: | | ||
# Don't build. Will be pulled 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 -alt | ||
ls -alt output | ||
ls -alt output/* |
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