This repository was archived by the owner on Oct 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22
22
docker exec -w /workspace/quic/src/owt $container_id git checkout FETCH_HEAD
23
23
docker exec -w /workspace/quic/src/owt $container_id git rev-parse HEAD >> git_sha.out
24
24
git_sha="$(cat git_sha.out)"
25
- echo "::set-output name=git_sha::$git_sha"
25
+ echo "git_sha=$git_sha" >> $GITHUB_OUTPUT
26
+ # The line below can be removed once docker image is updated.
27
+ docker exec $container_id apt-get update
28
+ docker exec $container_id apt-get install -y ninja-build
26
29
docker exec $container_id python3 owt/test/scripts/build.py
27
30
docker cp $container_id:/workspace/quic/packages/$git_sha.zip .
28
31
docker stop $container_id
Original file line number Diff line number Diff line change 9
9
FROM ubuntu:20.04
10
10
SHELL ["/bin/bash" , "-c" ]
11
11
ENV DEBIAN_FRONTEND=noninteractive
12
- RUN apt-get update && apt-get install -y git curl wget python lsb-release tzdata
12
+ ENV TAR_OPTIONS="--no-same-owner"
13
+ RUN apt-get update && apt-get install -y git curl wget python lsb-release tzdata ninja-build
13
14
RUN mkdir workspace
14
15
WORKDIR /workspace
15
16
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
You can’t perform that action at this time.
0 commit comments