-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tests on using all combinations of minimum and maximum versions of Python3 and OpenJDK. Minimum supported versions: - Python3: most recent patched version of 3.0. - OpenJDK: most recent patched version of 11. Maximum supported versions: - Python3: most recent stable release. - OpenJDK: most recent stable release. --- Closes #64 Closes #63
- Loading branch information
1 parent
7de5505
commit e1184e9
Showing
5 changed files
with
100 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Build test image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./shell/Dockerfile | ||
tags: test-image:latest | ||
push: false | ||
build-args: | ||
- PYTHON3_VERSION="" | ||
- OPENJDK_VERSION="" | ||
- | ||
name: Test | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: test-image:latest | ||
run: /plcc/tests/run |
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,31 @@ | ||
--- | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Build test image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./shell/Dockerfile | ||
tags: test-image:latest | ||
push: false | ||
build-args: | ||
- PYTHON3_VERSION="~=3.0.0" | ||
- OPENJDK_VERSION="" | ||
- | ||
name: Test | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: test-image:latest | ||
run: /plcc/tests/run |
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,31 @@ | ||
--- | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Build test image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./shell/Dockerfile | ||
tags: test-image:latest | ||
push: false | ||
build-args: | ||
- PYTHON3_VERSION="~=3.0.0" | ||
- OPENJDK_VERSION="~=11" | ||
- | ||
name: Test | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: test-image:latest | ||
run: /plcc/tests/run |
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