We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c7785 commit 8c71bd1Copy full SHA for 8c71bd1
.github/workflows/ci.yml
@@ -30,8 +30,15 @@ jobs:
30
- uses: actions/checkout@v4
31
- name: Prerequisites
32
run: |
33
+ prerequisites=(
34
+ ca-certificates
35
+ curl
36
+ gcc # rustc calls gcc to invoke the linker.
37
+ libc-dev # rustc, in the toolchain we are using, dynamically links to the system libc.
38
+ )
39
apt-get update
- apt-get install --no-install-recommends -y ca-certificates curl gcc # rustc invokes gcc for linking
40
+ apt-get install --no-install-recommends -y -- "${prerequisites[@]}"
41
+ shell: bash
42
- name: Verify environment is sufficiently minimal for the test
43
44
set -x
0 commit comments