diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe25f6645..c9d98b524 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -164,11 +164,13 @@ jobs: sudo apt-get update sudo apt-get install debootstrap - # Note: git, nc, strace, and time, are needed to run the benchmarks. - sudo debootstrap \ - --include=ca-certificates,curl,git,netcat-openbsd,strace,time \ - --no-merged-usr --variant=minbase bionic /sysroot \ - http://azure.archive.ubuntu.com/ubuntu + # `file` and `make` are needed to build libffi-sys. + # `curl` is needed to build rusty_v8. + # `git`, `nc`, `strace`, and `time`, are needed to run the benchmarks. + sudo debootstrap \ + --include=ca-certificates,curl,file,git,make,netcat-openbsd,strace,time \ + --no-merged-usr --variant=minbase bionic /sysroot \ + http://azure.archive.ubuntu.com/ubuntu sudo mount --rbind /dev /sysroot/dev sudo mount --rbind /sys /sysroot/sys sudo mount --rbind /home /sysroot/home |
