Merge pull request #512 from anodot/vpoliukh-patch-1 #3214
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 |