Skip to content

Commit 2c0dbf1

Browse files
committed
ci: Run gen-workflows
Signed-off-by: Daniel Silverstone <[email protected]>
1 parent 1601564 commit 2c0dbf1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/macos-builds-on-all.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
4343
echo "TARGET=${{ matrix.target }}" >> $GITHUB_ENV
4444
echo "SKIP_TESTS=" >> $GITHUB_ENV
45+
echo "LZMA_API_STATIC=1" >> $GITHUB_ENV
4546
- name: Cache cargo registry and git trees
4647
uses: actions/cache@v2
4748
with:
@@ -90,6 +91,13 @@ jobs:
9091
rustup target install "$TARGET"
9192
- name: Run a full build and test
9293
run: bash ci/run.bash
94+
- name: Dump dynamic link targets
95+
run: |
96+
otool -L target/${TARGET}/release/rustup-init
97+
if otool -L target/${TARGET}/release/rustup-init | grep -q -F /usr/local/; then
98+
echo >&2 "Unfortunately there are /usr/local things in the link. Fail."
99+
exit 1
100+
fi
93101
- name: Acquire the AWS tooling
94102
run: |
95103
pip3 install awscli

0 commit comments

Comments
 (0)