Skip to content

#350: Prefix CMake internal variables with magistrate_ and create a new target named magistrate to enable the use of find_package(magistrate) #184

#350: Prefix CMake internal variables with magistrate_ and create a new target named magistrate to enable the use of find_package(magistrate)

#350: Prefix CMake internal variables with magistrate_ and create a new target named magistrate to enable the use of find_package(magistrate) #184

###############################################################################
############## Warning this is a generated file---do not modify ###############
###############################################################################
name: PR tests (clang-12, ubuntu, mpich)
on:
push:
branches:
- develop
- 1.*
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
REPO: lifflander1/checkpoint
ARCH: amd64
UBUNTU: 20.04
COMPILER_TYPE: clang
COMPILER: clang-12
BUILD_TYPE: release
ULIMIT_CORE: 0
CODE_COVERAGE: 0
CHECKPOINT_TESTS: 1
CHECKPOINT_EXAMPLES: 1
CHECKPOINT_MPI: 1
CHECKPOINT_WARNINGS_AS_ERRORS: 1
CHECKPOINT_DOCS: 0
CHECKPOINT_ASAN: 1
CHECKPOINT_UBSAN: 0
CHECKPOINT_SERIALIZATION_ERROR_CHECKING: 1
CACHE: ~/.local/cache/
steps:
- name: Setup Build Root
run: |
echo "BUILD_ROOT=~/.local/cache/${{ env.ARCH }}-ubuntu-${{ env.UBUNTU }}-${{ env.COMPILER }}-cache" >> $GITHUB_ENV
- name: Prepare caching timestamp
run: |
echo "timestamp=$(TZ=UTC date +"%Y-%m-%d-%H;%M;%S")" >> $GITHUB_ENV
- uses: actions/cache@v3
env:
cache-name: ubuntu-clang-12-cache
with:
path: ${{ env.BUILD_ROOT }}/ccache
key: ${{ runner.os }}-${{ env.cache-name }}-${{ env.timestamp }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Prepare the base Docker image
shell: bash
run: $(./scripts/check_containers.sh) ubuntu-cpp
- name: Build the Docker image
run: docker-compose run ubuntu-cpp
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Docker Push Base Image
if: ${{ success() && github.ref == 'refs/heads/develop' }}
continue-on-error: true
shell: bash
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} \
-p ${{ secrets.DOCKER_PASSWORD }}
docker-compose push ubuntu-cpp
- name: Zip up CMake output
run: |
zip -j LastTest.log.gz ${{ env.BUILD_ROOT }}/checkpoint/Testing/Temporary/LastTest.log
zip -j cmake-output.log.gz ${{ env.BUILD_ROOT }}/checkpoint/cmake-output.log
- uses: actions/upload-artifact@v1
with:
name: CMake test output
path: cmake-output.log.gz
- uses: actions/upload-artifact@v1
with:
name: CMake full output
path: LastTest.log.gz