-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add global.json to control SDK version. - Update karate.jar to v1.2 to fix problems with deprecated/removed Java Nashorn engine. Closes #176
- Loading branch information
1 parent
e9cfa3e
commit d99fe9c
Showing
5 changed files
with
29 additions
and
183 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,19 @@ | ||
name: Glossary CI workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- 'hotfix/**' | ||
- 'release/**' | ||
- 'feature/**' | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
|
||
jobs: | ||
ci_remote: | ||
uses: nciocpl/nci.ocpl.api.shared/.github/workflows/common-api-ci.yml@ticket/52-shared-wf | ||
with: | ||
api-project: src/NCI.OCPL.Api.Glossary/NCI.OCPL.Api.Glossary.csproj | ||
artifact-name: glossary |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
{ | ||
"sdk": { | ||
"rollForward": "latestFeature", | ||
"version": "6.0.0" | ||
} | ||
} |
Binary file not shown.
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,4 @@ | ||
#!/bin/bash | ||
|
||
# Used in CI builds to abstract any API-specific start up steps. | ||
dotnet NCI.OCPL.Api.Glossary.dll |