mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-27 05:35:37 -04:00
88 lines
2.8 KiB
YAML
88 lines
2.8 KiB
YAML
name: nwchem_docker
|
|
|
|
on:
|
|
release:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
repository_dispatch:
|
|
types: [backend_automation]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docker_build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- {folder: nwchem-dev, archs: linux/aarch64, fc: gfortran}
|
|
- {folder: nwchem-dev, archs: linux/ppc64le, fc: gfortran}
|
|
- {folder: nwchem-dev, archs: linux/arm/v7, fc: gfortran}
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 420
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
with:
|
|
repository: 'nwchemgit/nwchem-dockerfiles'
|
|
fetch-depth: 5
|
|
- name: Setup cache
|
|
id: setup-cache
|
|
uses: actions/cache@v6
|
|
with:
|
|
path: |
|
|
~/cache
|
|
key: ${{ matrix.folder}}-${{ matrix.fc}}/${{ matrix.archs}}-nwchem-dockeractions-v002
|
|
- name: Qemu
|
|
id: qemu
|
|
uses: docker/setup-qemu-action@v4
|
|
with:
|
|
image: tonistiigi/binfmt:qemu-v8.1.5
|
|
- name: Available platforms
|
|
run: |
|
|
echo ${{ steps.qemu.outputs.platforms }}
|
|
docker images
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v4
|
|
with:
|
|
driver-opts: |
|
|
image=moby/buildkit:v0.18.2
|
|
- name: fetch cache
|
|
if: (steps.setup-cache.outputs.cache-hit == 'true') && ( matrix.folder != 'helloworld' )
|
|
run: |
|
|
cd ${{ matrix.folder }}
|
|
if [[ -f ~/cache/libext.tar.bz2 ]]; then \
|
|
mkdir -p cache|| true ; \
|
|
rsync -av ~/cache/libext* cache/. ; \
|
|
echo "libext cache fetched" ; \
|
|
fi
|
|
echo "cache_hit=Y" >> $GITHUB_ENV
|
|
- name: negative-cache-hit-reporter
|
|
if: (steps.setup-cache.outputs.cache-hit != 'true')
|
|
run: |
|
|
echo "cache_hit=N" >> $GITHUB_ENV
|
|
- name: build_schedule
|
|
uses: docker/build-push-action@v7
|
|
with:
|
|
push: false
|
|
context: ${{ matrix.folder }}
|
|
platforms: ${{ matrix.archs }}
|
|
outputs: type=docker,dest=/tmp/nwchem_image.tar
|
|
tags: nwchem_image
|
|
build-args: |
|
|
FC=${{ matrix.fc }}
|
|
CACHE_HIT=${{ env.cache_hit }}
|
|
NWCHEM_BRANCH=${{ github.ref_name }}
|
|
GITHUB_REPOSITORY_OWNER=${{ github.repository_owner }}
|
|
- name: store cache
|
|
run: |
|
|
mkdir -p ~/cache/
|
|
ls -l /tmp/nwchem_image.tar || true
|
|
docker load --input /tmp/nwchem_image.tar
|
|
docker images
|
|
docker inspect nwchem_image
|
|
docker run --privileged --user 0 --rm --platform ${{matrix.archs }} \
|
|
--entrypoint='/bin/cp' -v ~/cache:/data \
|
|
nwchem_image \
|
|
-rp /opt/nwchem/src/libext/libext.tar.bz2 /data/. || true
|
|
ls -Ralrt ~/cache || true
|