Skip to content

Commit 66b096d

Browse files
Pin circleci windows executor (#650)
## Usage and product changes Pins the executor used for windows jobs in CircleCI to a specific image so updates don't break the pipeline.
1 parent 7c6116e commit 66b096d

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.circleci/config.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ executors:
4646
resource_class: macos.m1.medium.gen1
4747
working_directory: ~/typedb-driver
4848

49+
win-x86_64:
50+
resource_class: windows.xlarge
51+
machine:
52+
image: windows-server-2022-gui:2024.01.1
53+
shell: cmd.exe
4954

5055
commands:
5156

@@ -578,10 +583,7 @@ jobs:
578583
- deploy-dotnet-runtime-snapshot-unix
579584

580585
deploy-snapshot-windows-x86_64:
581-
executor:
582-
name: win/default
583-
size: xlarge
584-
shell: cmd.exe
586+
executor: win-x86_64
585587
working_directory: ~/typedb-driver
586588
steps:
587589
- checkout
@@ -669,10 +671,7 @@ jobs:
669671
- test-dotnet-snapshot-mac-rosetta
670672

671673
test-snapshot-windows-x86_64:
672-
executor:
673-
name: win/default
674-
size: xlarge
675-
shell: cmd.exe
674+
executor: win-x86_64
676675
working_directory: ~/typedb-driver
677676
steps:
678677
- checkout
@@ -748,10 +747,7 @@ jobs:
748747
- deploy-dotnet-runtime-release-unix
749748

750749
deploy-release-windows-x86_64:
751-
executor:
752-
name: win/default
753-
size: xlarge
754-
shell: cmd.exe
750+
executor: win-x86_64
755751
working_directory: ~/typedb-driver
756752
steps:
757753
- checkout

RELEASE_NOTES_LATEST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Compiled distributions comprising headers and shared libraries available at: htt
8181

8282

8383
## New Features
84-
- **Copy jin library from input stream rather than file**
84+
- **Copy jni library from input stream rather than file**
8585
We now copy the jni library by reading from it as an input stream rather than as a file copy. This approach works when the JNI jars are nested, such as in Spring Boot projects.
8686

8787

0 commit comments

Comments
 (0)