2020-08-15 20:50:47 +08:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- releases/v*
|
|
|
|
|
|
|
|
jobs:
|
2020-08-15 21:36:37 +08:00
|
|
|
dockerhub:
|
2020-08-21 21:28:57 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-15 20:50:47 +08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-08-21 21:27:22 +08:00
|
|
|
os:
|
|
|
|
- ubuntu-20.04
|
|
|
|
- ubuntu-18.04
|
|
|
|
- ubuntu-16.04
|
2020-08-15 20:50:47 +08:00
|
|
|
logout:
|
|
|
|
- true
|
|
|
|
- false
|
2020-08-15 20:51:29 +08:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-08-17 17:34:12 +08:00
|
|
|
uses: actions/checkout@v2.3.2
|
2020-08-15 20:51:29 +08:00
|
|
|
-
|
2020-08-15 21:36:37 +08:00
|
|
|
name: Login to DockerHub
|
2020-08-15 20:52:04 +08:00
|
|
|
uses: ./
|
2020-08-15 20:51:29 +08:00
|
|
|
with:
|
2020-08-15 21:36:37 +08:00
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME_TEST }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD_TEST }}
|
|
|
|
logout: ${{ matrix.logout }}
|
|
|
|
-
|
|
|
|
name: Clear
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
rm -f ${HOME}/.docker/config.json
|
|
|
|
|
|
|
|
gpr:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
logout:
|
|
|
|
- true
|
|
|
|
- false
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-08-17 17:34:12 +08:00
|
|
|
uses: actions/checkout@v2.3.2
|
2020-08-15 21:36:37 +08:00
|
|
|
-
|
|
|
|
name: Login to GitHub Package Registry
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
registry: docker.pkg.github.com
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
logout: ${{ matrix.logout }}
|
|
|
|
-
|
|
|
|
name: Clear
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
rm -f ${HOME}/.docker/config.json
|
|
|
|
|
|
|
|
gitlab:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
logout:
|
|
|
|
- true
|
|
|
|
- false
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-08-17 17:34:12 +08:00
|
|
|
uses: actions/checkout@v2.3.2
|
2020-08-15 21:36:37 +08:00
|
|
|
-
|
|
|
|
name: Login to GitLab
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
registry: registry.gitlab.com
|
|
|
|
username: ${{ secrets.GITLAB_USERNAME_TEST }}
|
|
|
|
password: ${{ secrets.GITLAB_PASSWORD_TEST }}
|
2020-08-15 20:51:29 +08:00
|
|
|
logout: ${{ matrix.logout }}
|
2020-08-15 20:56:24 +08:00
|
|
|
-
|
|
|
|
name: Clear
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
rm -f ${HOME}/.docker/config.json
|
2020-08-20 21:59:36 +08:00
|
|
|
|
|
|
|
ecr:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-08-21 21:28:57 +08:00
|
|
|
os:
|
|
|
|
- ubuntu-20.04
|
|
|
|
- ubuntu-18.04
|
|
|
|
- ubuntu-16.04
|
2020-08-20 21:59:36 +08:00
|
|
|
logout:
|
|
|
|
- true
|
|
|
|
- false
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
-
|
|
|
|
name: Login to ECR
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
registry: ${{ secrets.AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
|
|
|
|
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
logout: ${{ matrix.logout }}
|
|
|
|
-
|
|
|
|
name: Clear
|
|
|
|
if: always()
|
|
|
|
run: |
|
|
|
|
rm -f ${HOME}/.docker/config.json
|