Skip to content

Commit

Permalink
Merge pull request #499 from MilesCranmer/fix-docker-ci
Browse files Browse the repository at this point in the history
Fix docker CI nightly
  • Loading branch information
MilesCranmer authored Dec 31, 2023
2 parents d83d731 + 6ac7ad5 commit b2e8dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_docker_large_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
julia-version: ['1.6', '1']
python-version: ['3.10']
python-version: ['3.7', '3.11']
os: [ubuntu-latest]
arch: ['linux/amd64', 'linux/arm64']

Expand All @@ -31,6 +31,6 @@ jobs:
with:
platforms: all
- name: Build docker
run: docker build --platform=${{ matrix.arch }} -t pysr --build-arg JLVERSION=${{ matrix.julia-version }} .
run: docker build --platform=${{ matrix.arch }} -t pysr --build-arg JLVERSION=${{ matrix.julia-version }} --build-arg PYVERSION=${{ matrix.python-version }} .
- name: Test docker
run: docker run --platform=${{ matrix.arch }} --rm pysr /bin/bash -c 'python3 -m pysr.test main && python3 -m pysr.test cli && python3 -m pysr.test env'

0 comments on commit b2e8dea

Please sign in to comment.