Add v1.19.0-2.0 images (#445) #236
Workflow file for this run
This file contains hidden or 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: Windows | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build & Test | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Even though dropped from GitHub Actions, but LTSC2019 itself is still maintained | |
# - version: v1.19 | |
# os-version: 2019 | |
- version: v1.19 | |
os-version: 2022 | |
runs-on: windows-${{ matrix.os-version }} | |
steps: | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.4 | |
- uses: actions/checkout@master | |
- name: Build | |
run: | | |
ridk enable | |
make image DOCKERFILE=${{ matrix.version }}/windows-ltsc${{ matrix.os-version }} VERSION=test |