-
Notifications
You must be signed in to change notification settings - Fork 2k
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 #1194 from nschonni/github-actions-docker-files
feat: GitHub Actions docker files CI
- Loading branch information
Showing
27 changed files
with
577 additions
and
244 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,24 @@ | ||
name: 10 on alpine3.10 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/alpine3.10/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/alpine3.10/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 10 on alpine3.10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 10 alpine3.10 |
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,24 @@ | ||
name: 10 on alpine3.11 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/alpine3.11/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/alpine3.11/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 10 on alpine3.11 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 10 alpine3.11 |
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,24 @@ | ||
name: 10 on alpine3.9 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/alpine3.9/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/alpine3.9/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 10 on alpine3.9 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 10 alpine3.9 |
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,24 @@ | ||
name: 10 on buster-slim | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/buster-slim/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/buster-slim/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 10 on buster-slim | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 10 buster-slim |
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,24 @@ | ||
name: 10 on buster | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/buster/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/buster/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 10 on buster | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 10 buster |
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,24 @@ | ||
name: 10 on stretch-slim | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/stretch-slim/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/stretch-slim/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 10 on stretch-slim | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 10 stretch-slim |
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,24 @@ | ||
name: 10 on stretch | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/stretch/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 10/stretch/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 10 on stretch | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 10 stretch |
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,24 @@ | ||
name: 12 on alpine3.10 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.10/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.10/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on alpine3.10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 alpine3.10 |
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,24 @@ | ||
name: 12 on alpine3.11 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.11/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.11/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on alpine3.11 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 alpine3.11 |
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,24 @@ | ||
name: 12 on alpine3.12 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.12/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.12/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on alpine3.12 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 alpine3.12 |
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,24 @@ | ||
name: 12 on alpine3.9 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.9/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/alpine3.9/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on alpine3.9 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 alpine3.9 |
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,24 @@ | ||
name: 12 on buster-slim | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/buster-slim/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/buster-slim/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on buster-slim | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 buster-slim |
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,24 @@ | ||
name: 12 on buster | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/buster/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/buster/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on buster | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 buster |
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,24 @@ | ||
name: 12 on stretch-slim | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/stretch-slim/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/stretch-slim/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on stretch-slim | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 stretch-slim |
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,24 @@ | ||
name: 12 on stretch | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/stretch/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 12/stretch/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 12 on stretch | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 12 stretch |
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,24 @@ | ||
name: 14 on alpine3.10 | ||
|
||
on: | ||
push: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 14/alpine3.10/Dockerfile | ||
pull_request: | ||
paths: | ||
- functions.sh | ||
- test-build.sh | ||
- test-image.bats | ||
- 14/alpine3.10/Dockerfile | ||
|
||
jobs: | ||
build: | ||
name: 14 on alpine3.10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get install bats | ||
- run: ./test-build.sh 14 alpine3.10 |
Oops, something went wrong.