Skip to content

Commit

Permalink
infra: reproduce windows issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nrmancuso committed Jan 4, 2024
1 parent b72cee2 commit 00cdd24
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
version: 2.1

orbs:
win: circleci/windows@2.4.0

jobs:
windows-build:
executor:
name: win/default
working_directory: C:\Users\circleci\project
steps:
- checkout:
path: C:\Users\circleci\project
# add cache here?
- run:
name: "Install dependencies"
command: |
choco uninstall -y openjdk
choco install -y openjdk --version=17.0.2
choco install -y maven
choco install -y xmlstarlet
java --version
- run:
name: run test
command: mvn -Dtest=PropertyCacheFileTest test
# save cache here?

run-inspections:
docker:
Expand Down Expand Up @@ -106,6 +130,9 @@ jobs:
command: yamllint -f parsable -c config/yamllint.yaml .

workflows:
windows:
jobs:
- windows-build
sonarqube:
jobs:
- sonarqube:
Expand Down

0 comments on commit 00cdd24

Please sign in to comment.