mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-19 20:18:43 +00:00

* CI: Use runner `macos-14` which uses M1 machine `macos-14` provides 3-core M1, 7G mem and 14G stroage, while `macos-latest` (`macos-13` as of writing) provides 4-core intel, 14G mem and 14G storage. While the memory is cut by half and core count reduce by 1, I believe that it would still speedup the CI since M1 is much more powerful than previous Intel CPU used in `macos-13`. It would also allow us to run tests on aarch64-apple-darwin and on universal-apple-darwin, if necessary. Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * CI: Fix `e2e-test-subcrate`: Bump `cargo-audit` ver to v0.18.3 Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> --------- Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
114 lines
2.7 KiB
YAML
114 lines
2.7 KiB
YAML
name: Test install-script
|
|
|
|
on:
|
|
merge_group:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
paths:
|
|
- install-from-binstall-release.ps1
|
|
- install-from-binstall-release.sh
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- install-from-binstall-release.ps1
|
|
- install-from-binstall-release.sh
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref || github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
unix:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-14, ubuntu-latest]
|
|
set_cargo_home: [t, f]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set `CARGO_HOME`
|
|
if: matrix.set_cargo_home == 't'
|
|
run: |
|
|
CARGO_HOME="$(mktemp -d 2>/dev/null || mktemp -d -t 'cargo-home')"
|
|
mkdir -p "${CARGO_HOME}/bin"
|
|
echo "CARGO_HOME=$CARGO_HOME" >> "$GITHUB_ENV"
|
|
echo "${CARGO_HOME}/bin" >> $GITHUB_PATH
|
|
|
|
- name: Install `cargo-binstall` using scripts
|
|
run: ./install-from-binstall-release.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Verify `cargo-binstall` installation
|
|
run: |
|
|
which cargo-binstall
|
|
cargo binstall -vV
|
|
|
|
windows:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
set_cargo_home: [t, f]
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set `CARGO_HOME`
|
|
if: matrix.set_cargo_home == 't'
|
|
shell: bash
|
|
run: |
|
|
CARGO_HOME="$(mktemp -d 2>/dev/null || mktemp -d -t 'cargo-home')"
|
|
mkdir -p "${CARGO_HOME}/bin"
|
|
echo "CARGO_HOME=$CARGO_HOME" >> "$GITHUB_ENV"
|
|
echo "${CARGO_HOME}/bin" >> $GITHUB_PATH
|
|
|
|
- name: Install `cargo-binstall` using scripts
|
|
run: ./install-from-binstall-release.ps1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Verify `cargo-binstall` installation
|
|
run: cargo binstall -vV
|
|
|
|
windows-bash:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
set_cargo_home: [t, f]
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set `CARGO_HOME`
|
|
if: matrix.set_cargo_home == 't'
|
|
shell: bash
|
|
run: |
|
|
CARGO_HOME="$(mktemp -d 2>/dev/null || mktemp -d -t 'cargo-home')"
|
|
mkdir -p "${CARGO_HOME}/bin"
|
|
echo "CARGO_HOME=$CARGO_HOME" >> "$GITHUB_ENV"
|
|
echo "${CARGO_HOME}/bin" >> $GITHUB_PATH
|
|
|
|
- name: Install `cargo-binstall` using scripts
|
|
shell: bash
|
|
run: ./install-from-binstall-release.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Verify `cargo-binstall` installation
|
|
shell: bash
|
|
run: cargo binstall -vV
|