-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
858c8c8
commit c4a9833
Showing
2 changed files
with
48 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Windows SDE tests | ||
on: | ||
pull_request: | ||
branches: [ '*' ] | ||
env: | ||
GOPROXY: https://proxy.golang.org,direct | ||
AWS_REGION: "us-west-2" | ||
|
||
jobs: | ||
WindowSDETests: | ||
runs-on: windows-2019 | ||
steps: | ||
- name: Git clone the repository | ||
uses: actions/checkout@v3 | ||
# - name: Build Windows Docker Images | ||
# run: | | ||
# choco install ninja --version 1.9.0.20190208 -y && | ||
# choco install nasm --version 2.14.02 -y | ||
- name: Run Windows Docker Image | ||
run: | | ||
ls "C:\Program Files (x86)\" | ||
ls "C:\Program Files (x86)\Microsoft Visual Studio\Installer" | ||
ls "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\" | ||
- name: Run Windows SDE Tests for x64 | ||
run: | | ||
.\tests\ci\run_windows_tests.bat "C:\Program Files (x86)\Microsoft Visual Studio 14.0\vcvarsall.bat" x64 true |
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