Skip to content

comment more jobs

comment more jobs #6

Workflow file for this run

name: Docker build testing
on: [push, pull_request]
jobs:
linux:
name: Test Linux (${{ matrix.version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
# - 2.10.x
- 2.11.x
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Build ${{ matrix.version }} images
run: |
cd ./${{ matrix.version }}/tests && ./build-images.sh
- name: Test ${{ matrix.version }} images
run: |
cd ./${{ matrix.version }}/tests && ./run-images.sh
# windows:
# name: Test Windows Server 2019 (${{ matrix.version }})
# runs-on: windows-2019
# strategy:
# fail-fast: false
# matrix:
# version:
# - 2.10.x
# - 2.11.x
# steps:
# - name: Checkout code
# uses: actions/checkout@v1
# - name: Build images
# shell: powershell
# run: |
# cd ./${{ matrix.version }}/tests; ./build-images-2019.ps1
# - name: Test images
# shell: powershell
# run: |
# cd ./${{ matrix.version }}/tests; ./run-images-2019.ps1