Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic vcpkg. #12859

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
apt-get install -y curl zip unzip tar.
aarlt committed Mar 25, 2022
commit ebf3f6156da23b34c47b47f0767fa743d4aad800
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
set -e

apt-get update
apt-get install curl zip unzip tar
apt-get install -y curl zip unzip tar
git submodule update --init --recursive

ROOTDIR="$(dirname "$0")/.."
2 changes: 1 addition & 1 deletion scripts/build_emscripten.sh
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@
set -e

apt-get update
apt-get install curl zip unzip tar
apt-get install -y curl zip unzip tar
git submodule update --init --recursive

if test -z "$1"; then
2 changes: 1 addition & 1 deletion scripts/ci/build.sh
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
set -ex

apt-get update
apt-get install curl zip unzip tar
apt-get install -y curl zip unzip tar
git submodule update --init --recursive

ROOTDIR="$(dirname "$0")/../.."
2 changes: 1 addition & 1 deletion scripts/ci/build_emscripten.sh
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@
set -ev

apt-get update
apt-get install curl zip unzip tar
apt-get install -y curl zip unzip tar
git submodule update --init --recursive

if test -z "$1"; then
2 changes: 1 addition & 1 deletion scripts/ci/build_ossfuzz.sh
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
set -ex

apt-get update
apt-get install curl zip unzip tar
apt-get install -y curl zip unzip tar
git submodule update --init --recursive

ROOTDIR="/root/project"