-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* breaking upgrade base build image to net5.0 * add make and build tools to image * fix code broken after net5.0 upgrade * fix warnings * fix tests and line endings * upgrade dotnet test and coverages packages * update circle build image * removed rafty and updated more packages * bring back develop * rename authorisation to authorization
- Loading branch information
1 parent
c3a0cf1
commit b74a119
Showing
130 changed files
with
4,765 additions
and
6,209 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 |
---|---|---|
@@ -1,36 +1,43 @@ | ||
version: 2.1 | ||
version: 2.1 | ||
orbs: | ||
queue: eddiewebb/[email protected] | ||
jobs: | ||
build: | ||
docker: | ||
- image: mijitt0m/ocelot-build:0.0.1 | ||
- image: mijitt0m/ocelot-build:0.0.3 | ||
steps: | ||
- checkout | ||
- run: make build | ||
release: | ||
docker: | ||
- image: mijitt0m/ocelot-build:0.0.1 | ||
- image: mijitt0m/ocelot-build:0.0.3 | ||
steps: | ||
- checkout | ||
- run: make release | ||
workflows: | ||
version: 2 | ||
master: | ||
jobs: | ||
jobs: | ||
- queue/block_workflow: | ||
time: "20" | ||
only-on-branch: master | ||
- release: | ||
- release: | ||
requires: | ||
- queue/block_workflow | ||
filters: | ||
branches: | ||
only: master | ||
develop: | ||
jobs: | ||
- build: | ||
filters: | ||
branches: | ||
only: develop | ||
pr: | ||
jobs: | ||
- build: | ||
filters: | ||
branches: | ||
ignore: | ||
- master | ||
- develop |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
*/*/bin | ||
*/*/obj | ||
*/*/bin | ||
*/*/obj | ||
artifacts/ | ||
TestResults/ |
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 |
---|---|---|
@@ -1,23 +1,24 @@ | ||
NAME ?= ocelot | ||
|
||
build: | ||
./build.sh | ||
|
||
build_and_run_tests: | ||
./build.sh --target=RunTests | ||
|
||
release: | ||
./build.sh --target=Release | ||
|
||
run_acceptance_tests: | ||
./build.sh --target=RunAcceptanceTests | ||
|
||
run_benchmarks: | ||
./build.sh --target=RunBenchmarkTests | ||
|
||
run_unit_tests: | ||
./build.sh --target=RunUnitTests | ||
|
||
release_notes: | ||
./build.sh --target=ReleaseNotes | ||
NAME ?= ocelot | ||
|
||
build: | ||
./build.sh | ||
|
||
build_and_run_tests: | ||
./build.sh --target=RunTests | ||
|
||
release: | ||
./build.sh --target=Release | ||
|
||
run_acceptance_tests: | ||
./build.sh --target=RunAcceptanceTests | ||
|
||
run_benchmarks: | ||
./build.sh --target=RunBenchmarkTests | ||
|
||
run_unit_tests: | ||
./build.sh --target=RunUnitTests | ||
|
||
release_notes: | ||
./build.sh --target=ReleaseNotes | ||
|
||
|
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
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
Oops, something went wrong.