trying docker logout step to fix CI/CD job failure (#39) #125
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
name: Push | |
on: push | |
jobs: | |
build_userland: | |
name: Build Userland | |
if: startsWith(github.ref, 'refs/heads/') | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
zfs: | |
- 0.8.2 | |
- 2.0.4 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: ./build -b ${{ secrets.s3_url }} -z ${{ matrix.zfs }} 4.9.184-linuxkit | |
- name: Publish | |
run: ./publish ${{ secrets.s3_bucket }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
build_kernel: | |
name: Build Kernel | |
if: startsWith(github.ref, 'refs/heads/') | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
zfs: | |
- 0.8.2 | |
- 2.0.4 | |
kernel: | |
# LinuxKit variants | |
# - 4.14.131-linuxkit | |
- 4.9.184-linuxkit | |
- 4.9.125-linuxkit | |
# Ubuntu variants | |
- 5.0.0-25-generic | |
- 5.3.0-28-generic | |
- 4.15.0-1040-gcp | |
- 4.15.0-1034-gcp | |
- 4.15.0-1044-aws | |
- 5.4.0-1060-aws | |
# CentOS variants | |
- 3.10.0-957.1.3.el7.x86_64 | |
- 3.10.0-957.27.2.el7.x86_64 | |
- 3.10.0-1062.4.1.el7.x86_64 | |
- 4.18.0-147.5.1.el8_1.x86_64 | |
# WSL variants | |
- 4.19.72-microsoft-standard | |
- 4.19.128-microsoft-standard | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: ./build -b ${{ secrets.s3_url }} -k -z ${{ matrix.zfs }} ${{ matrix.kernel }} | |
- name: Publish | |
run: ./publish ${{ secrets.s3_bucket }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |