Switch from azure to github actions #20
Workflow file for this run
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
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 |