Skip to content

update to make varfield_clw name consistent with ufo naming convention #409

update to make varfield_clw name consistent with ufo naming convention

update to make varfield_clw name consistent with ufo naming convention #409

Workflow file for this run

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'