Skip to content

Try again with root in env instead as appending results in error abou… #44

Try again with root in env instead as appending results in error abou…

Try again with root in env instead as appending results in error abou… #44

Workflow file for this run

name: Continuous Integration
on:
pull_request:
types:
- opened
- reopened
- synchronize
branches:
- master
paths-ignore:
- '**/README.*'
- 'doc/**'
- '1.gocd.yml'
- '.gitignore'
push:
branches:
- master
tags:
- v**
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: |
echo "# NOTE: try absolute path to current dir to get docker ro-mount to work"
export "DOCKER_MIGRID_ROOT=$PWD"
make init
make dockerbuild
- name: Start services
run: |
make up
- name: Run tests
run: |
make test
- name: Read docker compose logs
run: |
make logs
- name: Read migrid logs
run: |
tail -n +1 state/log/*
- name: Stop services
run: |
make down