-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/GRIDEDIT-872_undo_in_meshkernel
- Loading branch information
Showing
46 changed files
with
4,393 additions
and
1,796 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,31 @@ | ||
name: Build and test | ||
|
||
on: | ||
push: | ||
branches: | ||
- "feature/**" | ||
pull_request: | ||
types: | ||
- opened # triggers build when opened | ||
- synchronize # triggers build when commits are pushed to HEAD | ||
branches: | ||
- "feature/**" | ||
# Manual trigger | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: | ||
- macos-12 | ||
build_type: | ||
- Release | ||
|
||
uses: ./.github/workflows/build-and-test-workflow.yml | ||
with: | ||
platform: ${{ matrix.platform }} | ||
build_type: ${{ matrix.build_type }} |
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,27 @@ | ||
name: Build and test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- "release/v[0-9].[0-9].[0-9]" | ||
# Manual trigger | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: | ||
- macos-12 | ||
- macos-13-xlarge | ||
build_type: | ||
- Release | ||
|
||
uses: ./.github/workflows/build-and-test-workflow.yml | ||
with: | ||
platform: ${{ matrix.platform }} | ||
build_type: ${{ matrix.build_type }} |
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.