Setting ulimit for rsyslog #34
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: Continuous Integration | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
branches: | |
- master | |
paths-ignore: | |
- '**/README.*' | |
- 'doc/**' | |
- '1.gocd.yml' | |
- '.gitignore' | |
jobs: | |
defaults: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Run tests for documentation | |
run: | | |
make test-doc | |
- name: Build images | |
run: | | |
make init | |
make dockerbuild | |
- name: Start services | |
run: | | |
docker-compose up -d | |
- name: Run tests | |
run: | | |
make test | |
- name: Read docker-compose logs | |
run: | | |
docker-compose logs | |
- name: Read migrid logs | |
run: | | |
tail -n +1 state/log/* | |
- name: Stop services | |
run: | | |
docker-compose down |