forked from trikset/trik-studio
-
Notifications
You must be signed in to change notification settings - Fork 1
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 'upstream/master' into me/win_add_ubsan
- Loading branch information
Showing
57 changed files
with
514 additions
and
727 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
|
||
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis | ||
- name: Run Codacy Analysis CLI | ||
uses: codacy/[email protected].1 | ||
uses: codacy/[email protected].5 | ||
with: | ||
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository | ||
# You can also omit the token and run the tools that support default configurations | ||
|
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,92 @@ | ||
name: ubuntu CI | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot**' | ||
tags: | ||
- '*' | ||
paths-ignore: | ||
- '**/lsan.supp' | ||
- 'buildScripts/travis/*' | ||
- 'buildScripts/azure/*' | ||
- 'buildScripts/docker/*' | ||
- 'azure-pipelines.yml' | ||
- '.cirrus.yml' | ||
- '.travis.yml' | ||
- '.mergify.yml' | ||
- 'Brewfile' | ||
- '**/*.html' | ||
- '**/*.txt' | ||
- '**/*.md' | ||
- 'installer/packages/**/meta/prebuild-mac.sh' | ||
- 'installer/packages/**/meta/prebuild-linux-gnu.sh' | ||
- '**/*.dockerfile' | ||
- '**/*.Dockerfile' | ||
- '**/Dockerfile' | ||
- '**/Dockerfile.*' | ||
- 'plugins/robots/checker/scripts/build-checker-installer.sh' | ||
- '.github/workflows/centos.yml' | ||
pull_request: | ||
branches-ignore: | ||
- 'dependabot**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: ubuntu-latest | ||
lint: true | ||
build: false | ||
build_installer: false | ||
|
||
build-ubuntu-release-ccache: | ||
needs: lint | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: ubuntu-latest | ||
build: true | ||
build_installer: false | ||
qmake_extra: "CONFIG+=noPch CONFIG+=ccache CONFIG+=no-sanitizers CONFIG+=silent CONFIG+=warn_off" | ||
tests: true | ||
|
||
build-ubuntu-debug-ccache: | ||
needs: lint | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: ubuntu-latest | ||
build: true | ||
build_installer: false | ||
config: debug | ||
qmake_extra: "CONFIG+=noPch CONFIG+=ccache CONFIG+=silent CONFIG+=small_debug_info CONFIG+=sanitizer CONFIG+=sanitize_undefined CONFIG+=sanitize_address" | ||
tests: true | ||
|
||
build-ubuntu-release-tests: | ||
needs: build-ubuntu-release-ccache | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: ubuntu-latest | ||
build: true | ||
build_installer: false | ||
qmake_extra: "CONFIG+=tests CONFIG+=noPch CONFIG+=ccache CONFIG+=no-sanitizers CONFIG+=silent CONFIG+=warn_off" | ||
|
||
build-ubuntu-debug-tests: | ||
needs: build-ubuntu-debug-ccache | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: ubuntu-latest | ||
build: true | ||
build_installer: false | ||
config: debug | ||
qmake_extra: "CONFIG+=tests CONFIG+=noPch CONFIG+=ccache CONFIG+=silent CONFIG+=small_debug_info CONFIG+=sanitizer CONFIG+=sanitize_undefined CONFIG+=sanitize_address" | ||
|
||
build-ubuntu-installer: | ||
needs: [build-ubuntu-debug-tests, build-ubuntu-release-tests] | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: ubuntu-latest | ||
build: true | ||
build_installer: true | ||
qmake_extra: "CONFIG+=noPch CONFIG+=ccache CONFIG+=no-sanitizers CONFIG+=silent CONFIG+=warn_off" | ||
tests: true | ||
secrets: inherit |
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,97 @@ | ||
name: macOS CI | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot**' | ||
tags: | ||
- '*' | ||
paths-ignore: | ||
- '**/lsan.supp' | ||
- 'buildScripts/travis/*' | ||
- 'buildScripts/azure/*' | ||
- 'buildScripts/docker/*' | ||
- 'azure-pipelines.yml' | ||
- '.cirrus.yml' | ||
- '.travis.yml' | ||
- '.mergify.yml' | ||
- 'Brewfile' | ||
- '**/*.html' | ||
- '**/*.txt' | ||
- '**/*.md' | ||
- 'installer/packages/**/meta/prebuild-mac.sh' | ||
- 'installer/packages/**/meta/prebuild-linux-gnu.sh' | ||
- '**/*.dockerfile' | ||
- '**/*.Dockerfile' | ||
- '**/Dockerfile' | ||
- '**/Dockerfile.*' | ||
- 'plugins/robots/checker/scripts/build-checker-installer.sh' | ||
- '.github/workflows/centos.yml' | ||
pull_request: | ||
branches-ignore: | ||
- 'dependabot**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: ubuntu-latest | ||
lint: true | ||
build: false | ||
build_installer: false | ||
|
||
build-macos-release-ccache: | ||
needs: lint | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: macos-12 | ||
executor: "time" | ||
build: true | ||
build_installer: false | ||
qmake_extra: "CONFIG+=noPch CONFIG+=ccache CONFIG+=no-sanitizers CONFIG+=silent CONFIG+=warn_off" | ||
tests: true | ||
|
||
build-macos-debug-ccache: | ||
needs: lint | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: macos-12 | ||
executor: "time" | ||
build: true | ||
build_installer: false | ||
config: debug | ||
qmake_extra: "CONFIG+=warn_off CONFIG+=noPch CONFIG+=ccache CONFIG+=silent CONFIG+=small_debug_info CONFIG+=sanitizer CONFIG+=sanitize_undefined CONFIG+=sanitize_address" | ||
tests: true | ||
|
||
build-macos-release-tests: | ||
needs: build-macos-release-ccache | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: macos-12 | ||
executor: "time" | ||
build: true | ||
build_installer: false | ||
qmake_extra: "CONFIG+=tests CONFIG+=noPch CONFIG+=ccache CONFIG+=no-sanitizers CONFIG+=silent CONFIG+=warn_off" | ||
|
||
build-macos-debug-tests: | ||
needs: build-macos-debug-ccache | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: macos-12 | ||
executor: "time" | ||
build: true | ||
build_installer: false | ||
config: debug | ||
qmake_extra: "CONFIG+=warn_off CONFIG+=tests CONFIG+=noPch CONFIG+=ccache CONFIG+=silent CONFIG+=small_debug_info CONFIG+=sanitizer CONFIG+=sanitize_undefined CONFIG+=sanitize_address" | ||
|
||
build-macos-installer: | ||
needs: [build-macos-debug-tests, build-macos-release-tests] | ||
uses: ./.github/workflows/setup_environment.yml | ||
with: | ||
os: macos-12 | ||
executor: "time" | ||
build: true | ||
build_installer: true | ||
qmake_extra: " CONFIG+=noPch CONFIG+=ccache CONFIG+=no-sanitizers CONFIG+=silent CONFIG+=warn_off" | ||
tests: true | ||
secrets: inherit |
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.