Skip to content

Commit

Permalink
Fix typo in name of yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
oshadura committed Feb 9, 2024
1 parent 7631365 commit 57a8ee1
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
DOCKER_ORG: coffeateam
GITHUB_SHA: ${{ github.sha }}
GITHUB_REF: ${{ github.ref }}
release: "2024.1.0"
release: "2024.1.1"
releasev0: "0.7.22"

jobs:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
echo "::set-output name=tags::${tags}"
- name: Build base v0
if: ${{ matrix.image_dir }} == 'coffea-basev0'
if: ${{ matrix.image_dir == 'coffea-basev0' }}
uses: docker/build-push-action@v5
with:
load: true
Expand All @@ -89,10 +89,10 @@ jobs:
file: ${{ matrix.image_dir }}/Dockerfile.${{ matrix.distro }}
build-args: |
python=${{ matrix.python }}
release=${{ env.releasev0 }}
releasev0=${{ env.releasev0 }}
- name: Build base v1
if: ${{ matrix.image_dir }} != 'coffea-basev0'
if: ${{ matrix.image_dir != 'coffea-basev0' }}
uses: docker/build-push-action@v5
with:
load: true
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
sh -c "pip install -U pytest && cd tmp/workspace && pytest"
- name: Build and push v0
if: ${{ matrix.image_dir }} != 'coffea-basev0'
if: ${{ matrix.image_dir != 'coffea-basev0' }}
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
Expand All @@ -143,7 +143,7 @@ jobs:
release=${{ env.release }}
- name: Build and push v1
if: ${{ matrix.image_dir }} == 'coffea-basev0'
if: ${{ matrix.image_dir == 'coffea-basev0' }}
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
Expand All @@ -153,5 +153,5 @@ jobs:
file: ${{ matrix.image_dir }}/Dockerfile.${{ matrix.distro }}
build-args: |
python=${{ matrix.python }}
release=${{ env.releasev0 }}
releasev0=${{ env.releasev0 }}
6 changes: 3 additions & 3 deletions .github/workflows/watch-conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
check-version:
runs-on: ubuntu-latest
if: github.repository == 'coffeateam/docker-coffea-base'
if: github.repository == 'coffeateam/af-images'

steps:
- uses: actions/checkout@v2
Expand All @@ -26,15 +26,15 @@ jobs:
package: "coffea"

- name: Find and Replace Release 0.x release
if: ${{ ! startsWith(steps.latest_version.outputs.version, '0.') }}
if: ${{ startsWith(steps.latest_version.outputs.version, '0.') }}
uses: jacobtomlinson/[email protected]
with:
find: ${{ steps.current_version.outputs.env_releasev0 }}
replace: ${{ steps.latest_version.outputs.version }}
regex: false

- name: Find and Replace Release Calver release
if: ${{ ! startsWith(steps.latest_version.outputs.version, '20') }}
if: ${{ startsWith(steps.latest_version.outputs.version, '20') }}
uses: jacobtomlinson/[email protected]
with:
find: ${{ steps.current_version.outputs.env_release }}
Expand Down
4 changes: 2 additions & 2 deletions coffea-basev0/Dockerfile.alma8
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ RUN yum -y update \
&& rpm -e --nodeps curl bzip2 \
&& yum clean all

COPY environment.yml /
COPY environment.yaml /

RUN mamba install --yes python=${PYTHON_VERSION} \
&& mamba env update --file /environment.yml \
&& mamba env update --file /environment.yaml \
&& mamba clean -y --all

# Make a symbolic link between installation /opt/conda/etc/grid-security and actual directory /etc/grid-security
Expand Down
4 changes: 2 additions & 2 deletions coffea-basev0/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ RUN apt-get update \
&& apt-get install -yq --no-install-recommends libarchive-dev zsh \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

COPY environment.yml /
COPY environment.yaml /

RUN mamba install --yes python=${PYTHON_VERSION} \
&& mamba env update --file /environment.yml \
&& mamba env update --file /environment.yaml \
&& mamba clean -y --all

# Make a symbolic link between installation /opt/conda/etc/grid-security and actual directory /etc/grid-security
Expand Down
2 changes: 1 addition & 1 deletion coffea-basev0/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ dependencies:
- pytorch=1.12
- torch-scatter
- pip
- coffea=0.7.22
- pip:
- fastjet # to be added to conda-forge: https://github.com/scikit-hep/fastjet/issues/133
- tritonclient[all]
Expand All @@ -53,4 +54,3 @@ dependencies:
- torch-spline-conv
- torch-geometric
- fsspec-xrootd
- coffea==2024.1.2 # release candidates are not in conda-forge
4 changes: 2 additions & 2 deletions coffea-dask/Dockerfile.alma8
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ RUN yum -y update \
&& rpm -e --nodeps curl bzip2 \
&& yum clean all

COPY environment.yml /
COPY environment.yaml /

RUN mamba install --yes python=${PYTHON_VERSION} \
&& mamba env update --file /environment.yml \
&& mamba env update --file /environment.yaml \
&& mamba clean -y --all

# Make a symbolic link between installation /opt/conda/etc/grid-security and actual directory /etc/grid-security
Expand Down
4 changes: 2 additions & 2 deletions coffea-dask/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ RUN apt-get update \
&& apt-get install -yq --no-install-recommends libarchive-dev zsh \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

COPY environment.yml /
COPY environment.yaml /

RUN mamba install --yes python=${PYTHON_VERSION} \
&& mamba env update --file /environment.yml \
&& mamba env update --file /environment.yaml \
&& mamba clean -y --all

# Make a symbolic link between installation /opt/conda/etc/grid-security and actual directory /etc/grid-security
Expand Down
2 changes: 1 addition & 1 deletion coffea-dask/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ dependencies:
- pytorch=1.12
- torch-scatter
- pip
- coffea=v2024.1.2
- pip:
- fastjet # to be added to conda-forge: https://github.com/scikit-hep/fastjet/issues/133
- tritonclient[all]
Expand All @@ -53,4 +54,3 @@ dependencies:
- torch-spline-conv
- torch-geometric
- fsspec-xrootd
- coffea==v2024.1.2 # release candidates are not in conda-forge

0 comments on commit 57a8ee1

Please sign in to comment.