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 2222 docker exec -w /workspace/quic/src/owt $container_id git checkout FETCH_HEAD
2323 docker exec -w /workspace/quic/src/owt $container_id git rev-parse HEAD >> git_sha.out
2424 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
2629 docker exec $container_id python3 owt/test/scripts/build.py
2730 docker cp $container_id:/workspace/quic/packages/$git_sha.zip .
2831 docker stop $container_id
Original file line number Diff line number Diff line change 99FROM ubuntu:20.04
1010SHELL ["/bin/bash" , "-c" ]
1111ENV 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
1314RUN mkdir workspace
1415WORKDIR /workspace
1516RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
You can’t perform that action at this time.
0 commit comments