gnu/ci: install the dep into a separate task

This commit is contained in:
Sylvestre Ledru 2021-05-21 13:27:35 +02:00
parent df45b20dc1
commit 73b47b8c76

View file

@ -32,11 +32,14 @@ jobs:
default: true default: true
profile: minimal # minimal component installation (ie, no documentation) profile: minimal # minimal component installation (ie, no documentation)
components: rustfmt components: rustfmt
- name: Build binaries - name: Install deps
shell: bash shell: bash
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get install autoconf autopoint bison texinfo gperf gcc g++ gdb python-pyinotify python3-sphinx jq sudo apt-get install autoconf autopoint bison texinfo gperf gcc g++ gdb python-pyinotify python3-sphinx jq
- name: Build binaries
shell: bash
run: |
pushd uutils pushd uutils
make PROFILE=release make PROFILE=release
BUILDDIR="$PWD/target/release/" BUILDDIR="$PWD/target/release/"