Skip to content

Commit 1a8ed12

Browse files
authored
ci: add windows codebuild job (#637)
* ci: add windows codebuild job * remove build tests * debug with ssh * remove debugger
1 parent 95139d8 commit 1a8ed12

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

.codebuild/build_windows.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 0.2
2+
env:
3+
shell: powershell.exe
4+
phases:
5+
build:
6+
commands:
7+
- yarn run production-build
8+
9+
artifacts:
10+
files:
11+
- 'shared-scripts.sh'

.codebuild/e2e_workflow.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ batch:
1010
buildspec: .codebuild/build_linux.yml
1111
env:
1212
compute-type: BUILD_GENERAL1_LARGE
13+
- identifier: build_windows
14+
buildspec: .codebuild/build_windows.yml
15+
env:
16+
type: WINDOWS_SERVER_2019_CONTAINER
17+
compute-type: BUILD_GENERAL1_LARGE
18+
image: $WINDOWS_IMAGE_2019
1319
- identifier: test
1420
buildspec: .codebuild/test.yml
1521
env:

.codebuild/pr_workflow.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ batch:
88
build-graph:
99
- identifier: build_linux
1010
buildspec: .codebuild/build_linux.yml
11+
- identifier: build_windows
12+
buildspec: .codebuild/build_windows.yml
13+
env:
14+
type: WINDOWS_SERVER_2019_CONTAINER
15+
compute-type: BUILD_GENERAL1_LARGE
16+
image: $WINDOWS_IMAGE_2019
1117
- identifier: test
1218
buildspec: .codebuild/test.yml
1319
depend-on:

.codebuild/release_workflow.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ batch:
88
build-graph:
99
- identifier: build_linux
1010
buildspec: .codebuild/build_linux.yml
11+
- identifier: build_windows
12+
buildspec: .codebuild/build_windows.yml
13+
env:
14+
type: WINDOWS_SERVER_2019_CONTAINER
15+
compute-type: BUILD_GENERAL1_LARGE
16+
image: $WINDOWS_IMAGE_2019
1117
- identifier: test
1218
buildspec: .codebuild/test.yml
1319
depend-on:
@@ -24,3 +30,4 @@ batch:
2430
buildspec: .codebuild/deploy.yml
2531
depend-on:
2632
- test
33+
- build-windows

0 commit comments

Comments
 (0)