-
-
Notifications
You must be signed in to change notification settings - Fork 61
114 lines (93 loc) · 2.73 KB
/
install-script.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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