Skip to content

Commit 29643ec

Browse files
committed
修正
1 parent e8d1522 commit 29643ec

File tree

1 file changed

+22
-19
lines changed

1 file changed

+22
-19
lines changed

.github/workflows/build-debug.yml

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,28 @@ jobs:
8989
- name: Setup libwebrtc
9090
if: steps.webrtc-build-cache.outputs.cache-hit != 'true'
9191
run: |
92-
set -x
93-
sudo apt-get -y install tzdata
94-
sudo echo 'Asia/Tokyo' > /etc/timezone
95-
sudo dpkg-reconfigure -f noninteractive tzdata
96-
sudo env DEBIAN_FRONTEND=noninteractive apt-get -y install \
97-
binutils \
98-
git \
99-
locales \
100-
lsb-release \
101-
ninja-build \
102-
pkg-config \
103-
python3 \
104-
python3-setuptools \
105-
rsync \
106-
sudo \
107-
unzip \
108-
vim \
109-
wget \
110-
xz-utils
92+
sudo bash -c '
93+
set -ex
94+
apt-get -y install tzdata
95+
echo "Asia/Tokyo" > /etc/timezone
96+
dpkg-reconfigure -f noninteractive tzdata
97+
export DEBIAN_FRONTEND=noninteractive
98+
apt-get -y install \
99+
binutils \
100+
git \
101+
locales \
102+
lsb-release \
103+
ninja-build \
104+
pkg-config \
105+
python3 \
106+
python3-setuptools \
107+
rsync \
108+
sudo \
109+
unzip \
110+
vim \
111+
wget \
112+
xz-utils
113+
'
111114
- name: Build libwebrtc
112115
if: steps.webrtc-build-cache.outputs.cache-hit != 'true'
113116
working-directory: webrtc-build

0 commit comments

Comments
 (0)