-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
docker exec -e PY_TAG="cp3${{ matrix.python3-version }}-cp3${{ matrix.python3-version }}" -e CONAN_PROFILE=linux-x86_64-gcc10-libstdc++ linux_build /bin/bash -c "/tket/.github/workflows/linuxbuildwheel" | ||
mkdir wheelhouse | ||
docker cp linux_build:/tket/pytket/audited/. wheelhouse/ | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Linux_3.${{ matrix.python3-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -63,7 +63,7 @@ jobs: | |
run: | | ||
export DOCKER_HOST=unix://${HOME}/.docker/run/docker.sock | ||
docker rm --force -v linux_build | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Linux_aarch64_3.${{ matrix.python3-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -108,7 +108,7 @@ jobs: | |
pip install -U pip build delocate | ||
python -m build | ||
delocate-wheel -v -w "$GITHUB_WORKSPACE/wheelhouse/" "dist/pytket-"*".whl" | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: MacOS_${{ matrix.python-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -154,7 +154,7 @@ jobs: | |
python${{ matrix.python-version }} -m pip install -U pip build delocate | ||
python${{ matrix.python-version }} -m build | ||
delocate-wheel -v -w "$GITHUB_WORKSPACE/wheelhouse/" "dist/pytket-"*".whl" | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: MacOS_M1_${{ matrix.python-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -194,7 +194,7 @@ jobs: | |
cd pytket | ||
python -m pip install -U pip build | ||
python -m build --outdir "${{ github.workspace }}/wheelhouse" | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Windows_${{ matrix.python-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -212,7 +212,7 @@ jobs: | |
with: | ||
python-version: "3.${{ matrix.python3-version }}" | ||
- name: Download wheels | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Linux_3.${{ matrix.python3-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -240,7 +240,7 @@ jobs: | |
with: | ||
path: tket | ||
- name: Download wheel | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Linux_aarch64_3.${{ matrix.python3-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -277,7 +277,7 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Download wheels | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: MacOS_${{ matrix.python-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -310,7 +310,7 @@ jobs: | |
if: matrix.python-version == '3.9' | ||
run: brew install [email protected] | ||
- name: Download wheels | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: MacOS_M1_${{ matrix.python-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -339,7 +339,7 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Download wheel | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Windows_${{ matrix.python-version }}_wheel | ||
path: wheelhouse/ | ||
|
@@ -363,7 +363,7 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Download all wheels | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: wheelhouse | ||
- name: Put them all in the dist folder | ||
|
@@ -389,7 +389,7 @@ jobs: | |
with: | ||
python-version: '3.10' | ||
- name: Download wheels | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Linux_3.10_wheel | ||
path: wheelhouse/ | ||
|
@@ -403,7 +403,7 @@ jobs: | |
timeout-minutes: 20 | ||
run: ./.github/workflows/build-docs | ||
- name: Upload artefact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pytket_docs | ||
path: pytket/docs/build/html/ | ||
|
@@ -419,7 +419,7 @@ jobs: | |
with: | ||
ref: gh-pages | ||
- name: Download artefact | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pytket_docs | ||
path: api/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters