#354: Bump minimum CMake version to 3.23 and update find_package_local
to work with packageName_ROOT
#328
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: PR tests with vt (clang-11, 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-11 | |
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: 1 | |
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-11-cache | |
with: | |
path: ${{ env.BUILD_ROOT }}/ccache | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ steps.cache_ts.outputs.timestamp }} | |
restore-keys: | | |
${{ runner.os }}-${{ env.cache-name }}- | |
- uses: actions/checkout@v3 | |
with: | |
repository: DARMA-tasking/vt | |
ref: develop | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Prepare the base Docker image | |
shell: bash | |
run: $(./scripts/check_containers.sh) ubuntu-cpp-vt | |
- name: Build the Docker image | |
run: docker-compose run ubuntu-cpp-vt | |
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-vt |