update to make varfield_clw name consistent with ufo naming convention #412
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout current repo | |
uses: actions/checkout@v2 | |
- name: checkout ropp-ufo | |
uses: actions/checkout@v2 | |
with: | |
path: ci/ropp-ufo | |
repository: MetOffice/ropp-ufo | |
token: ${{ secrets.GH_PAT }} | |
- name: checkout oops | |
uses: actions/checkout@v2 | |
with: | |
path: ci/oops | |
repository: JCSDA-internal/oops | |
token: ${{ secrets.GH_PAT }} | |
- name: matching branch checkout attempt oops ${{ github.head_ref }} | |
if: github.event_name == 'pull_request' | |
run: ./ci/get-ref-branch ./ci/oops | |
- name: checkout jedicmake | |
uses: actions/checkout@v2 | |
with: | |
path: ci/jedicmake | |
repository: JCSDA-internal/jedi-cmake | |
submodules: true | |
token: ${{ secrets.GH_PAT }} | |
- name: checkout ioda | |
uses: actions/checkout@v2 | |
with: | |
path: ci/ioda | |
repository: JCSDA-internal/ioda | |
token: ${{ secrets.GH_PAT }} | |
- name: matching branch checkout attempt ioda ${{ github.head_ref }} | |
if: github.event_name == 'pull_request' | |
run: ./ci/get-ref-branch ./ci/ioda | |
- name: checkout ufo | |
uses: actions/checkout@v2 | |
with: | |
path: ci/ufo | |
repository: JCSDA-internal/ufo | |
token: ${{ secrets.GH_PAT }} | |
- name: matching branch checkout attempt ufo ${{ github.head_ref }} | |
if: github.event_name == 'pull_request' | |
run: ./ci/get-ref-branch ./ci/ufo | |
- name: build and test | |
run: | | |
docker run --rm \ | |
--entrypoint=/usr/local/src/opsinputs/ci/opsinputs-ci-build \ | |
--workdir=/usr/local/src/opsinputs/ci \ | |
--volume $PWD:/usr/local/src/opsinputs \ | |
'jcsda/docker-gnu-openmpi-dev:latest' |