Skip to content

Commit 520e65f

Browse files
committed
Merge remote-tracking branch 'origin/main' into release/0.3.0
2 parents 52a12a8 + b0653c4 commit 520e65f

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

.github/workflows/build-wheels-m1.yml

+14-7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
1414
workflow_dispatch:
1515

16+
permissions:
17+
id-token: write
18+
contents: read
19+
1620
jobs:
1721
generate-matrix:
1822
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
@@ -23,20 +27,23 @@ jobs:
2327
test-infra-ref: main
2428
build:
2529
needs: generate-matrix
30+
strategy:
31+
fail-fast: false
32+
matrix:
33+
include:
34+
- repository: pytorch/rl
35+
smoke-test-script: test/smoke_test.py
36+
package-name: torchrl
2637
name: pytorch/rl
2738
uses: pytorch/test-infra/.github/workflows/build_wheels_macos.yml@main
2839
with:
29-
repository: pytorch/rl
40+
repository: ${{ matrix.repository }}
3041
ref: ""
3142
test-infra-repository: pytorch/test-infra
3243
test-infra-ref: main
3344
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
34-
post-script: ""
35-
package-name: torchrl
45+
package-name: ${{ matrix.package-name }}
3646
runner-type: macos-m1-stable
37-
smoke-test-script: ""
47+
smoke-test-script: ${{ matrix.smoke-test-script }}
3848
trigger-event: ${{ github.event_name }}
3949
env-var-script: .github/scripts/m1_script.sh
40-
secrets:
41-
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
42-
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}

.github/workflows/wheels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
path: dist/*.whl
5454

5555
build-wheel-mac:
56-
runs-on: macos-latest
56+
runs-on: macos-11
5757
strategy:
5858
matrix:
5959
python_version: [["3.8", "3.8"], ["3.9", "3.9"], ["3.10", "3.10.3"], ["3.11", "3.11"]]
@@ -121,7 +121,7 @@ jobs:
121121
needs: [build-wheel-linux, build-wheel-mac]
122122
strategy:
123123
matrix:
124-
os: [["linux", "ubuntu-20.04"], ["mac", "macos-latest"]]
124+
os: [["linux", "ubuntu-20.04"], ["mac", "macos-11"]]
125125
python_version: [ "3.8", "3.9", "3.10", "3.11" ]
126126
runs-on: ${{ matrix.os[1] }}
127127
steps:

0 commit comments

Comments
 (0)