AL-11656 Dynatrace integration #3210
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: Run tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
- 'release*' | |
jobs: | |
test-general: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Increase vm memory | |
run: sudo sysctl -w vm.max_map_count=262144 | |
- name: Build | |
run: make build-all | |
- name: Test | |
run: make test-general | |
- name: Show logs | |
if: ${{ failure() }} | |
run: make show-all-logs | |
test-pipelines-1: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Increase vm memory | |
run: sudo sysctl -w vm.max_map_count=262144 | |
- name: Build | |
run: make build-all | |
- name: Test | |
run: make test-pipelines-1 | |
- name: Show logs | |
if: ${{ failure() }} | |
run: make show-all-logs | |
test-pipelines-2: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Increase vm memory | |
run: sudo sysctl -w vm.max_map_count=262144 | |
- name: Build | |
run: make build-all | |
- name: Test | |
run: make test-pipelines-2 | |
- name: Show logs | |
if: ${{ failure() }} | |
run: make show-all-logs |