File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2929 - name : Build docker image
3030 run : docker buildx build --platform=${{ matrix.platform }} --build-arg='ARCH=${{ matrix.arch }}' --no-cache --tag maturin -f .ci/Dockerfile.maturin .ci
3131 - name : Build wheels
32- run : docker run --platform=${{ matrix.platform }} --rm -v $(realpath light-curve):/io maturin build --release -i python3.6 python3.7 python3.8 python3.9 python3.10 --cargo-extra-args="--locked --no-default-features --features ${{ matrix.fftw_feature }},gsl"
32+ run : docker run --platform=${{ matrix.platform }} --rm -v $(realpath light-curve):/io maturin build --release -i python3.6 -i python3.7 -i python3.8 -i python3.9 -i python3.10 --cargo-extra-args="--locked --no-default-features --features ${{ matrix.fftw_feature }},gsl"
3333 - name : Run Python tests for x86_64 only
3434 if : ${{ matrix.arch == 'x86_64' }}
3535 run : docker run --platform=${{ matrix.platform }} --rm -v $(realpath light-curve):/io --entrypoint=/bin/bash maturin -c 'python3.6 -m pip install target/wheels/*cp36*.whl && python3.7 -m pip install target/wheels/*cp37*.whl && python3.8 -m pip install target/wheels/*cp38*.whl && python3.9 -m pip install target/wheels/*cp39*.whl && python3.10 -m pip install target/wheels/*cp310*.whl && tox -p --skip-pkg-install --sitepackages'
8585 - name : Run Python tests
8686 run : tox -p -q
8787 - name : Publish macOS light-curve packages
88- run : maturin publish -i python3.6 python3.7 python3.8 python3.9 python3.10 -u __token__ -p ${{ secrets.PYPI_TOKEN_LIGHT_CURVE }}
88+ run : maturin publish -i python3.6 -i python3.7 -i python3.8 -i python3.9 -i python3.10 -u __token__ -p ${{ secrets.PYPI_TOKEN_LIGHT_CURVE }}
8989
9090 publish-light-curve-python :
9191 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments