Skip to content

Commit

Permalink
Pin circleci windows executor (#650)
Browse files Browse the repository at this point in the history
## Usage and product changes
Pins the executor used for windows jobs in CircleCI to a specific image so updates don't break the pipeline.
  • Loading branch information
krishnangovindraj authored May 16, 2024
1 parent 7c6116e commit 66b096d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
20 changes: 8 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ executors:
resource_class: macos.m1.medium.gen1
working_directory: ~/typedb-driver

win-x86_64:
resource_class: windows.xlarge
machine:
image: windows-server-2022-gui:2024.01.1
shell: cmd.exe

commands:

Expand Down Expand Up @@ -578,10 +583,7 @@ jobs:
- deploy-dotnet-runtime-snapshot-unix

deploy-snapshot-windows-x86_64:
executor:
name: win/default
size: xlarge
shell: cmd.exe
executor: win-x86_64
working_directory: ~/typedb-driver
steps:
- checkout
Expand Down Expand Up @@ -669,10 +671,7 @@ jobs:
- test-dotnet-snapshot-mac-rosetta

test-snapshot-windows-x86_64:
executor:
name: win/default
size: xlarge
shell: cmd.exe
executor: win-x86_64
working_directory: ~/typedb-driver
steps:
- checkout
Expand Down Expand Up @@ -748,10 +747,7 @@ jobs:
- deploy-dotnet-runtime-release-unix

deploy-release-windows-x86_64:
executor:
name: win/default
size: xlarge
shell: cmd.exe
executor: win-x86_64
working_directory: ~/typedb-driver
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES_LATEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Compiled distributions comprising headers and shared libraries available at: htt


## New Features
- **Copy jin library from input stream rather than file**
- **Copy jni library from input stream rather than file**
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.


Expand Down

0 comments on commit 66b096d

Please sign in to comment.