Skip to content

Commit

Permalink
Switch to ghcr.io images for testing (conda#10838)
Browse files Browse the repository at this point in the history
* Switch to ghcr.io images for testing

Advantages:
* Defined and published by the conda repo
* No rate limits when used by Github actions

* Remove redundant workdir arg

The workdir is already defined that way by the Dockerfile.
  • Loading branch information
dbast authored Aug 3, 2021
1 parent c03780f commit dc36b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
with:
fetch-depth: 0
- name: Python ${{ matrix.python_version }} ${{ matrix.test_type }} tests
run: docker run --rm -v ${PWD}:/conda --workdir=/conda continuumio/conda-ci-linux-64-python${{ matrix.python_version }}:latest /conda/ci/${{ matrix.test_type }}_tests.sh
run: docker run --rm -v ${PWD}:/conda ghcr.io/conda/conda:master-python${{ matrix.python_version }} /conda/ci/${{ matrix.test_type }}_tests.sh
- name: upload codecov
run: |
if [[ $(git diff origin/master --name-only | wc -l) == $(git diff origin/master --name-only | grep docs | wc -l) && $(git diff origin/master --name-only | grep docs) ]]; then
Expand Down

0 comments on commit dc36b56

Please sign in to comment.