Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/linux-builds-on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ jobs:
--rm \
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
run: |
pip3 install -U setuptools
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/linux-builds-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,13 @@ jobs:
--rm \
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
run: |
pip3 install -U setuptools
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/linux-builds-on-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,13 @@ jobs:
--rm \
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
run: |
pip3 install -U setuptools
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/macos-builds-on-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
echo "TARGET=${{ matrix.target }}" >> $GITHUB_ENV
echo "SKIP_TESTS=" >> $GITHUB_ENV
echo "LZMA_API_STATIC=1" >> $GITHUB_ENV
- name: Cache cargo registry and git trees
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -90,6 +91,20 @@ jobs:
rustup target install "$TARGET"
- name: Run a full build and test
run: bash ci/run.bash
- name: Dump dynamic link targets
run: |
otool -L target/${TARGET}/release/rustup-init
if otool -L target/${TARGET}/release/rustup-init | grep -q -F /usr/local/; then
echo >&2 "Unfortunately there are /usr/local things in the link. Fail."
exit 1
fi
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
run: |
pip3 install awscli
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/windows-builds-on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@ jobs:
rustup target install ${{ matrix.target }}
- name: Run a full build
run: bash ci/run.bash
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init.exe
retention-days: 7
- name: Acquire the AWS tooling
run: |
choco upgrade awscli
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/windows-builds-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ jobs:
rustup target install ${{ matrix.target }}
- name: Run a full build
run: bash ci/run.bash
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init.exe
retention-days: 7
- name: Acquire the AWS tooling
run: |
choco upgrade awscli
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/windows-builds-on-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@ jobs:
rustup target install ${{ matrix.target }}
- name: Run a full build
run: bash ci/run.bash
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init.exe
retention-days: 7
- name: Acquire the AWS tooling
run: |
choco upgrade awscli
Expand Down
7 changes: 7 additions & 0 deletions ci/actions-templates/linux-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,13 @@ jobs:
--rm \
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
run: |
pip3 install -U setuptools
Expand Down
15 changes: 15 additions & 0 deletions ci/actions-templates/macos-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
echo "TARGET=${{ matrix.target }}" >> $GITHUB_ENV
echo "SKIP_TESTS=" >> $GITHUB_ENV
echo "LZMA_API_STATIC=1" >> $GITHUB_ENV
- name: Cache cargo registry and git trees
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -90,6 +91,20 @@ jobs:
rustup target install "$TARGET"
- name: Run a full build and test
run: bash ci/run.bash
- name: Dump dynamic link targets
run: |
otool -L target/${TARGET}/release/rustup-init
if otool -L target/${TARGET}/release/rustup-init | grep -q -F /usr/local/; then
echo >&2 "Unfortunately there are /usr/local things in the link. Fail."
exit 1
fi
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
run: |
pip3 install awscli
Expand Down
7 changes: 7 additions & 0 deletions ci/actions-templates/windows-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,13 @@ jobs:
rustup target install ${{ matrix.target }}
- name: Run a full build
run: bash ci/run.bash
- name: Upload the built artifact
uses: actions/upload-artifact@v2
with:
name: rustup-init-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/rustup-init.exe
retention-days: 7
- name: Acquire the AWS tooling
run: |
choco upgrade awscli
Expand Down