[ci] remove sudo in install dependency scripts as docker build does not support it
This commit is contained in:
parent
fa37fccad4
commit
04e1ef56b3
|
@ -119,7 +119,7 @@ jobs:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: ./.github/workflows/install_dependencies_build.sh
|
run: bash ./.github/workflows/install_dependencies_build.sh
|
||||||
|
|
||||||
- name: Dump tool versions
|
- name: Dump tool versions
|
||||||
run: |
|
run: |
|
||||||
|
@ -200,7 +200,7 @@ jobs:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: ./.github/workflows/install_dependencies_build.sh
|
run: bash ./.github/workflows/install_dependencies_build.sh
|
||||||
|
|
||||||
- name: Dump tool versions
|
- name: Dump tool versions
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# The package list is designed for Ubuntu 20.04 LTS
|
# The package list is designed for Ubuntu 20.04 LTS
|
||||||
sudo apt-get update
|
apt-get update
|
||||||
sudo apt-get install -y \
|
apt-get install -y \
|
||||||
autoconf \
|
autoconf \
|
||||||
automake \
|
automake \
|
||||||
bison \
|
bison \
|
||||||
|
|
Loading…
Reference in New Issue