Skip to content

Commit

Permalink
fix: workflow installs
Browse files Browse the repository at this point in the history
  • Loading branch information
jharlow-intel committed Aug 15, 2024
1 parent c34a99d commit 4d127b2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gol_build_test_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
run: conda install conda-build
run: conda install conda-build -c conda-forge --override-channels
- name: Build conda package
run: |
CHANNELS="-c dppy/label/dev -c intel -c conda-forge --override-channels"
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
# Needed to be able to run conda index
run: conda install conda-build
run: conda install conda-build -c conda-forge --override-channels
- name: Create conda channel
run: |
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}

- name: Install anaconda-client
run: conda install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH

Expand All @@ -333,7 +333,7 @@ jobs:
auto-activate-base: true
activate-environment: ""
- name: Install anaconda-client
run: conda install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels

- name: Upload
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mandelbrot_build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
run: conda install conda-build
run: conda install conda-build -c conda-forge --override-channels
- name: Build conda package
run: |
CHANNELS="-c dppy/label/dev -c intel -c conda-forge --override-channels"
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
# Needed to be able to run conda index
run: conda install conda-build
run: conda install conda-build -c conda-forge --override-channels
- name: Create conda channel
run: |
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}

- name: Install anaconda-client
run: conda install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH

Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
auto-activate-base: true
activate-environment: ""
- name: Install anaconda-client
run: conda install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels

- name: Upload
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mcpi_build_test_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
run: conda install conda-build
run: conda install conda-build -c conda-forge --override-channels
- name: Build conda package
run: |
CHANNELS="-c intel -c main --override-channels"
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
# Needed to be able to run conda index
run: conda install conda-build
run: conda install conda-build -c conda-forge --override-channels
- name: Create conda channel
run: |
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}

- name: Install anaconda-client
run: conda install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH

Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
auto-activate-base: true
activate-environment: ""
- name: Install anaconda-client
run: conda install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels

- name: Upload
env:
Expand Down

0 comments on commit 4d127b2

Please sign in to comment.