-
Notifications
You must be signed in to change notification settings - Fork 183
47 lines (47 loc) · 1.85 KB
/
windows-omnibus.yml
File metadata and controls
47 lines (47 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: windows-omnibus
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env:
GOPROXY: https://proxy.golang.org,direct
permissions:
contents: read
jobs:
windows2022_mscvc_compilers:
name: windows-${{ matrix.image }}-x86_64
runs-on:
- codebuild-aws-lc-ci-github-actions-${{ github.run_id }}-${{ github.run_attempt }}
image:windows-ec2-2022
instance-size:large
strategy:
fail-fast: false
matrix:
include:
- image: ltsc2022_vs2015
envPath: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
- image: ltsc2022_vs2017
envPath: C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat
- image: ltsc2022_vs2019
envPath: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat
- image: ltsc2022_vs2022
envPath: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat
- image: ltsc2022_sde
envPath: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat
runSDE: true
steps:
- uses: actions/checkout@v6
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- shell: pwsh
run: >
docker run
-v ${{ github.workspace }}:${{ github.workspace }}
-w ${{ github.workspace }}
${{ steps.login-ecr.outputs.registry }}/aws-lc/windows:${{ matrix.image }}
cmd /S /C call .\tests\ci\run_windows_tests.bat "${{ matrix.envPath }}" x64 ${{ matrix.runSDE || false }}