Skip to content

Commit

Permalink
change yaml indentation to 4 spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Feb 7, 2024
1 parent 1e55e16 commit bd3a5ad
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 110 deletions.
160 changes: 80 additions & 80 deletions .github/workflows/ci_runner.yaml
Original file line number Diff line number Diff line change
@@ -1,93 +1,93 @@
name: CI Runner

on:
workflow_dispatch:
inputs:
model_nickname:
description: 'Nickname of the model - to be used to access the model data on S3'
required: true
type: string
model_zip_url:
description: 'Presigned url for the model zip-file'
required: true
type: string
workflow_dispatch:
inputs:
model_nickname:
description: 'Nickname of the model - to be used to access the model data on S3'
required: true
type: string
model_zip_url:
description: 'Presigned url for the model zip-file'
required: true
type: string


env:
S3_HOST: ${{vars.S3_HOST}}
S3_BUCKET: ${{vars.S3_BUCKET}}
S3_FOLDER: ${{vars.S3_FOLDER}}
S3_ACCESS_KEY_ID: ${{secrets.S3_ACCESS_KEY_ID}}
S3_SECRET_ACCESS_KEY: ${{secrets.S3_SECRET_ACCESS_KEY}}
S3_HOST: ${{vars.S3_HOST}}
S3_BUCKET: ${{vars.S3_BUCKET}}
S3_FOLDER: ${{vars.S3_FOLDER}}
S3_ACCESS_KEY_ID: ${{secrets.S3_ACCESS_KEY_ID}}
S3_SECRET_ACCESS_KEY: ${{secrets.S3_SECRET_ACCESS_KEY}}


jobs:
validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
outputs:
dynamic_test_cases: ${{ steps.validate.outputs.dynamic_test_cases }}
has_dynamic_test_cases: ${{ steps.validate.outputs.has_dynamic_test_cases }}
steps:
- uses: actions/checkout@v4
- name: Install workflow script dependencies
run: |
echo "Installing workflow script dependencies"
python -m pip install --upgrade pip
python -m pip install "minio==7.2.3" "ruamel.yaml==0.18.5" "bioimageio.spec==0.4.9.post5" "typer"
- name: Unzip model file
run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Unzipping package" "1" "6"
python .github/scripts/unzip_model.py "${{inputs.model_nickname}}" "${{inputs.model_zip_url}}"
validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
outputs:
dynamic_test_cases: ${{ steps.validate.outputs.dynamic_test_cases }}
has_dynamic_test_cases: ${{ steps.validate.outputs.has_dynamic_test_cases }}
steps:
- uses: actions/checkout@v4
- name: Install workflow script dependencies
run: |
echo "Installing workflow script dependencies"
python -m pip install --upgrade pip
python -m pip install "minio==7.2.3" "ruamel.yaml==0.18.5" "bioimageio.spec==0.4.9.post5" "typer"
- name: Unzip model file
run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Unzipping package" "1" "6"
python .github/scripts/unzip_model.py "${{inputs.model_nickname}}" "${{inputs.model_zip_url}}"
- name: Validate format
id: validate
run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Starting validation" "2" "6"
python .github/scripts/validate_format.py "${{ inputs.model_nickname }}" "${{inputs.model_zip_url}}"
- run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Starting additional tests" "3" "6"
if: steps.validate.outputs.has_dynamic_test_cases == 'yes'
- run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Validation done" "3" "6"
if: steps.validate.outputs.has_dynamic_test_cases == 'no'
- name: Validate format
id: validate
run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Starting validation" "2" "6"
python .github/scripts/validate_format.py "${{ inputs.model_nickname }}" "${{inputs.model_zip_url}}"
- run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Starting additional tests" "3" "6"
if: steps.validate.outputs.has_dynamic_test_cases == 'yes'
- run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Validation done" "3" "6"
if: steps.validate.outputs.has_dynamic_test_cases == 'no'
test:
needs: validate
if: needs.validate.outputs.has_dynamic_test_cases == 'yes'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.static-validation.outputs.dynamic_test_cases) }} # [{env_name: ..., weight_format: ...}, ...]
steps:
- uses: actions/checkout@v4
- name: install validation dependencies
id: create_env
uses: mamba-org/setup-micromamba@v1
with:
cache-downloads: true
environment-name: ${{ matrix.env_name }}
environment-file: conda_env_${{ matrix.weight_format }}.yaml
create-args: >- # script dependencies
typer
conda-forge::bioimageio.spec
continue-on-error: true # we inspect this step's outcome in test_dynamically.py
timeout-minutes: 60
- name: install minimal script dependencies if val env failed
if: ${{ steps.create_env.outcome != 'success' }}
run: pip install typer bioimageio.spec
- name: dynamic validation
shell: bash -l {0}
run: python scripts/test_dynamically.py "${{inputs.model_zip_url}}" ${{ matrix.weight_format }} --create-env-outcome ${{ steps.create_env.outcome }} --${{ contains(inputs.deploy_to, 'gh-pages') && 'no-ignore' || 'ignore' }}-rdf-source-field-in-validation
timeout-minutes: 60
test:
needs: validate
if: needs.validate.outputs.has_dynamic_test_cases == 'yes'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.static-validation.outputs.dynamic_test_cases) }} # [{env_name: ..., weight_format: ...}, ...]
steps:
- uses: actions/checkout@v4
- name: install validation dependencies
id: create_env
uses: mamba-org/setup-micromamba@v1
with:
cache-downloads: true
environment-name: ${{ matrix.env_name }}
environment-file: conda_env_${{ matrix.weight_format }}.yaml
create-args: >- # script dependencies
typer
conda-forge::bioimageio.spec
continue-on-error: true # we inspect this step's outcome in test_dynamically.py
timeout-minutes: 60
- name: install minimal script dependencies if val env failed
if: ${{ steps.create_env.outcome != 'success' }}
run: pip install typer bioimageio.spec
- name: dynamic validation
shell: bash -l {0}
run: python scripts/test_dynamically.py "${{inputs.model_zip_url}}" ${{ matrix.weight_format }} --create-env-outcome ${{ steps.create_env.outcome }} --${{ contains(inputs.deploy_to, 'gh-pages') && 'no-ignore' || 'ignore' }}-rdf-source-field-in-validation
timeout-minutes: 60

conclude:
needs: test
if: always() # run even if test job fails
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Awaiting review" "4" "6"
conclude:
needs: test
if: always() # run even if test job fails
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Awaiting review" "4" "6"
60 changes: 30 additions & 30 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
name: publish

on:
workflow_dispatch:
inputs:
model_nickname:
description: 'Nickname of the model - to be used to access the model data on S3'
required: true
type: string
workflow_dispatch:
inputs:
model_nickname:
description: 'Nickname of the model - to be used to access the model data on S3'
required: true
type: string


env:
S3_HOST: ${{vars.S3_HOST}}
S3_BUCKET: ${{vars.S3_BUCKET}}
S3_FOLDER: ${{vars.S3_FOLDER}}
S3_ACCESS_KEY_ID: ${{secrets.S3_ACCESS_KEY_ID}}
S3_SECRET_ACCESS_KEY: ${{secrets.S3_SECRET_ACCESS_KEY}}
ZENODO_URL: ${{vars.ZENODO_URL}}
ZENODO_API_ACCESS_TOKEN: ${{secrets.ZENODO_API_ACCESS_TOKEN}}
S3_HOST: ${{vars.S3_HOST}}
S3_BUCKET: ${{vars.S3_BUCKET}}
S3_FOLDER: ${{vars.S3_FOLDER}}
S3_ACCESS_KEY_ID: ${{secrets.S3_ACCESS_KEY_ID}}
S3_SECRET_ACCESS_KEY: ${{secrets.S3_SECRET_ACCESS_KEY}}
ZENODO_URL: ${{vars.ZENODO_URL}}
ZENODO_API_ACCESS_TOKEN: ${{secrets.ZENODO_API_ACCESS_TOKEN}}

jobs:
publish:
runs-on: ubuntu-latest
outputs:
dynamic_test_cases: ${{ steps.validate.outputs.dynamic_test_cases }}
has_dynamic_test_cases: ${{ steps.validate.outputs.has_dynamic_test_cases }}
steps:
- uses: actions/checkout@v4
- name: Install workflow script dependencies
run: |
echo "Installing workflow script dependencies"
python -m pip install --upgrade pip
python -m pip install "minio==7.2.3" "loguru==0.7.2" "packaging==23.2" "spdx-license-list==3.22" "ruamel.yaml==0.18.5" "typer"
- name: Publish to Zenodo
run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Publishing to Zenodo" "5" "6"
python .github/scripts/upload_model_to_zenodo.py --model_name "${{inputs.model_nickname}}"
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Publishing complete" "6" "6"
publish:
runs-on: ubuntu-latest
outputs:
dynamic_test_cases: ${{ steps.validate.outputs.dynamic_test_cases }}
has_dynamic_test_cases: ${{ steps.validate.outputs.has_dynamic_test_cases }}
steps:
- uses: actions/checkout@v4
- name: Install workflow script dependencies
run: |
echo "Installing workflow script dependencies"
python -m pip install --upgrade pip
python -m pip install "minio==7.2.3" "loguru==0.7.2" "packaging==23.2" "spdx-license-list==3.22" "ruamel.yaml==0.18.5" "typer"
- name: Publish to Zenodo
run: |
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Publishing to Zenodo" "5" "6"
python .github/scripts/upload_model_to_zenodo.py --model_name "${{inputs.model_nickname}}"
python .github/scripts/update_status.py "${{ inputs.model_nickname }}" "Publishing complete" "6" "6"

0 comments on commit bd3a5ad

Please sign in to comment.