Skip to content

Release v2.15.0-RC.2 #1109

Release v2.15.0-RC.2

Release v2.15.0-RC.2 #1109

Workflow file for this run

name: Docker build testing
on: [push, pull_request]
permissions:
contents: read
jobs:
linux:
name: Test Linux (${{ matrix.version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- 2.10.x
- 2.11.x
- 2.12.x
- 2.14.x
- 2.15.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 LTSC ${{ matrix.ltsc }} (${{ matrix.version }})
runs-on: windows-${{ matrix.ltsc }}
strategy:
fail-fast: false
matrix:
version:
- 2.10.x
- 2.11.x
- 2.12.x
- 2.14.x
- 2.15.x
ltsc:
- 2022
# - 2025
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Build images
shell: powershell
run: |
cd ./${{ matrix.version }}/tests; ./build-images-ltsc${{ matrix.ltsc }}.ps1
- name: Test images
shell: powershell
run: |
cd ./${{ matrix.version }}/tests; ./run-images-ltsc${{ matrix.ltsc }}.ps1