This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
Merge branch 'test' #1497
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: 🧪 Build and test | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# Relies on the master branch built docker image for build-deps | |
- name: Start Docker Compose & build | |
run: cd docker && docker-compose up -d | |
# Copy Underpass library | |
- name: Copy library | |
run: docker-compose -f docker-compose.yml exec -T underpass sh -c "cp /code/build/.libs/libunderpass.so /usr/lib" | |
# Build and run tests | |
- name: Build and run tests | |
run: | | |
docker-compose -f docker-compose.yml exec -T underpass sh -c "cd /code/build && make check -j `nproc`" | |
exit_code=$? | |
if [ $exit_code -ne 0 ]; then | |
echo "Test failed with exit code $exit_code" | |
exit $exit_code | |
fi | |