-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into docs/structured_doc
- Loading branch information
Showing
3,131 changed files
with
311,317 additions
and
136,692 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: CI | ||
|
||
# this is required to satisfy the required checks by replacing them with dummy checks | ||
# see https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: # This must be the same as .github/workflows/ci.yml - "paths-ignore" ! | ||
- '**.md' | ||
- 'documents/**' | ||
- 'scripts/**' | ||
- '.github/workflows/ci-dummy.yml' | ||
- '.github/workflows/build_docker_image*.yml' | ||
- '.github/workflows/nightly_build.yml' | ||
- 'kratos/templates/**' | ||
- 'kratos/python_scripts/application_generator/**' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
ubuntu: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build-type: [Custom, FullDebug] | ||
compiler: [gcc, clang] | ||
steps: | ||
- run: 'echo "Dummy build, no checks executed ..."' | ||
|
||
windows: | ||
runs-on: ubuntu-latest # ubuntu is faster than Win, hence no point using Win here | ||
|
||
steps: | ||
- run: 'echo "Dummy build, no checks executed ..."' |
Oops, something went wrong.