File tree 1 file changed +6
-0
lines changed 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 93
93
target : ${{ matrix.target }}
94
94
manylinux : ${{ matrix.manylinux || 'auto' }}
95
95
container : ${{ matrix.container }}
96
+ docker-options : -e CI
96
97
- name : Upload wheels
97
98
uses : actions/upload-artifact@v3
98
99
with :
@@ -126,6 +127,9 @@ jobs:
126
127
- uses : dtolnay/rust-toolchain@stable
127
128
with :
128
129
components : llvm-tools
130
+ # FIXME: remove next step once PyO3/maturin-action filters `CARGO_HOME`
131
+ - run : echo 'CARGO_HOME=' >> "$GITHUB_ENV"
132
+ shell : bash
129
133
- name : Build initial wheel
130
134
uses : PyO3/maturin-action@v1
131
135
with :
@@ -134,6 +138,7 @@ jobs:
134
138
command : build
135
139
args : --release --out pgo_wheel --interpreter ${{ matrix.interpreter }}
136
140
manylinux : ${{ matrix.manylinux || 'auto' }}
141
+ docker-options : -e CI
137
142
env :
138
143
RUSTFLAGS : " -Cprofile-generate=${{ github.workspace }}/profdata"
139
144
- run : |
@@ -156,6 +161,7 @@ jobs:
156
161
args : --release --out dist --interpreter ${{ matrix.interpreter }}
157
162
manylinux : ${{ matrix.manylinux || 'auto' }}
158
163
rust-toolchain : stable
164
+ docker-options : -e CI
159
165
env :
160
166
RUSTFLAGS : " -Cprofile-use=${{ github.workspace }}/merged.profdata"
161
167
- name : Upload wheels
You can’t perform that action at this time.
0 commit comments