We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1601564 commit 2c0dbf1Copy full SHA for 2c0dbf1
.github/workflows/macos-builds-on-all.yaml
@@ -42,6 +42,7 @@ jobs:
42
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
43
echo "TARGET=${{ matrix.target }}" >> $GITHUB_ENV
44
echo "SKIP_TESTS=" >> $GITHUB_ENV
45
+ echo "LZMA_API_STATIC=1" >> $GITHUB_ENV
46
- name: Cache cargo registry and git trees
47
uses: actions/cache@v2
48
with:
@@ -90,6 +91,13 @@ jobs:
90
91
rustup target install "$TARGET"
92
- name: Run a full build and test
93
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
101
- name: Acquire the AWS tooling
102
run: |
103
pip3 install awscli
0 commit comments