Skip to content

added new workflows #48

added new workflows

added new workflows #48

Workflow file for this run

# This is file is automatically generated. Do not edit.
name: 'fsl'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: ["test_docker_build"]
jobs:
fsl:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
base_image: ['ubuntu:22.04', 'ubuntu:18.04', 'ubuntu:16.04', 'debian:bullseye-slim', 'debian:buster-slim', 'debian:stretch-slim', 'fedora:36', 'centos:7']
version: ['6.0.6.4', '6.0.6.3', '6.0.6.2', '6.0.6.1', '6.0.6', '6.0.5.2', '6.0.5.1', '6.0.5', '6.0.4', '6.0.3', '6.0.2', '6.0.1', '6.0.0', '5.0.11', '5.0.10', '5.0.9', '5.0.8']
method: ['binaries']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install neurodocker
run: python -m pip install --editable .[dev]
- name: Generate Dockerfile
run: |
apt_based=('ubuntu:22.04', 'ubuntu:18.04', 'ubuntu:16.04', 'debian:bullseye-slim', 'debian:buster-slim', 'debian:stretch-slim')
if [[ " ${apt_based[*]} " =~ ${{ matrix.base_image }} ]]; then
pkg_manager="apt"
fi
yum_based=('fedora:36', 'centos:7')
if [[ " ${yum_based[*]} " =~ ${{ matrix.base_image }} ]]; then
pkg_manager="yum"
fi
neurodocker \
generate docker \
--base-image=${{ matrix.base_image }} \
--pkg-manager=${pkg_manager} \
--yes \
--fsl \
version=${{ matrix.version }} \
method=${{ matrix.method }} \
> Dockerfile_tmp
cat Dockerfile_tmp
- name: Build the Docker image
run: docker build -f Dockerfile_tmp .