-
Notifications
You must be signed in to change notification settings - Fork 1.4k
202 lines (180 loc) · 5.61 KB
/
ci.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
on:
push:
branches:
- main
paths:
- "**/*.rs"
- "**/Cargo.toml"
- Cargo.lock
pull_request:
paths:
- "**/*.rs"
- "**/Cargo.toml"
- Cargo.lock
- .github/workflows/ci.yml
name: ci·rs
concurrency:
group: ci/rs/${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check
clippy:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --all-features
env:
RUSTFLAGS: "-D warnings"
test:
needs: fmt
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
env:
RUSTFLAGS: "-D warnings"
coverage-unit:
needs: fmt
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo install cargo-tarpaulin
- run: cargo tarpaulin -o lcov --output-dir coverage
- uses: coverallsapp/github-action@v2
with:
path-to-lcov: coverage/lcov.info
parallel: true
flag-name: ${{ matrix.os }}-unit
- uses: actions/upload-artifact@v4
with:
path: ./target/release/pkgx
coverage-integration:
needs: fmt
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: build
run: |
RUSTFLAGS="-C instrument-coverage" cargo build
echo "$PWD/target/debug" >> $GITHUB_PATH
# testing for installing multiple of the same thing at once is ok
- run: pkgx +gnome.org/libxml2 & pkgx +gnome.org/libxml2 & pkgx +gnome.org/libxml2
# ^^ KEEP FIRST, IT MUST INSTALL
- run: pkgx --help
- run: pkgx --version
- run: pkgx +git
- run: pkgx +git --json
- run: pkgx +git --json=v1
- run: pkgx git --version
- run: pkgx --silent +git
- run: pkgx --quiet +git
- run: pkgx +git -- git --version # lib/utils.rs:find_program
- run: pkgx --shellcode || true
- run: pkgx -qq git --version
- run: pkgx -s git --version
- run: pkgx -j +git
- run: pkgx /usr/bin/awk --version
- run: pkgx +yarnpkg.com yarn --version
- run: pkgx +yarnpkg.com -- yarn --version
# coverage for conflict error messages
- run: "! pkgx yarn --version"
# coverage for display-name resolution
- run: pkgx -v +agg
# testing we correctly handle +pkg syntax for pkgs with no env
- run: pkgx +curl.se/ca-certs
# create a fork bomb, but since it’s via pkgx we prevent it
- run: |
echo '#!/bin/sh' > foo
echo 'pkgx -- /bin/sh "$0"' >> foo
chmod u+x foo
if ./foo; then
exit 1
fi
# check that we update the pantry for unknown programs
# this works by deleting the entry for git then forcing
# pkgx to update the db, then trying to get git again
- run: |
set -x
rm -rf ~/.pkgx
rm -rf ~/.local/share/pkgx/pantry/projects/git-scm.org
rm ~/.cache/pkgx/pantry.2.db
pkgx curl --version
test -f ~/.cache/pkgx/pantry.2.db
test ! -d ~/.local/share/pkgx/pantry/projects/git-scm.org
pkgx git --version
test -d ~/.local/share/pkgx/pantry/projects/git-scm.org
if: ${{ matrix.os == 'ubuntu-latest' }}
# ^^ only on one platform as wasteful otherwise
- run: if [ $(find ~/.pkgx -name .tmp\* -type d | wc -l) -gt 0 ]; then
exit 1;
fi
- name: generate coverage
run: |
cargo install rustfilt
pkgx +llvm.org -- llvm-profdata merge -sparse default_*.profraw -o default.profdata
pkgx +llvm.org -- llvm-cov export \
./target/debug/pkgx \
--format=lcov \
--ignore-filename-regex="$HOME/.cargo" \
--instr-profile=default.profdata \
-Xdemangler=rustfilt \
> lcov.info
- name: --shebang test 1
run: |
echo "#!/usr/bin/env -S pkgx --shebang echo" > ./stub.sh
chmod +x stub.sh
test "$(./stub.sh hi)" = hi
- name: --shebang test 2
run: test $(pkgx -q! echo fail hi) = hi
- uses: coverallsapp/github-action@v2
with:
path-to-lcov: lcov.info
parallel: true
flag-name: ${{ matrix.os }}-integration
upload-coverage:
needs: [coverage-unit, coverage-integration]
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@v2
with:
parallel-finished: true
test-minimal-container:
needs: fmt
runs-on: ubuntu-latest
container: debian:buster-slim
steps:
- uses: actions/checkout@v4
- run: apt-get update && apt-get install -y curl make gcc perl
- uses: dtolnay/rust-toolchain@stable
- run: apt-get remove curl ca-certificates openssl --yes
- run: cargo build
- run: ./target/debug/pkgx +git