File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,26 @@ set -xe
33BAZELISK_VERSION=v1.12.0
44BAZELISK_DOWNLOAD_SHA=6b0bcb2ea15bca16fffabe6fda75803440375354c085480fe361d2cbf32501db
55
6+ # install git lfs apt source
7+ curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
8+
9+ # install gh apt source
10+ (type -p wget > /dev/null || (sudo apt update && sudo apt-get install wget -y)) \
11+ && sudo mkdir -p -m 755 /etc/apt/keyrings \
12+ && wget -qO- https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
13+ && sudo chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
14+ && echo " deb [arch=$( dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
15+
616apt-get update
717export DEBIAN_FRONTEND=noninteractive
818apt-get -y install --no-install-recommends \
919 zlib1g-dev \
1020 uuid-dev \
1121 python3-distutils \
1222 python3-pip \
13- bash-completion
23+ bash-completion \
24+ git-lfs \
25+ gh
1426
1527# Install Bazel
1628curl -fSsL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION} /bazelisk-linux-amd64
Original file line number Diff line number Diff line change 11set -xe
22
3+ git lfs install
4+
35# add the workspace to the codeql search path
46mkdir -p /home/vscode/.config/codeql
57echo " --search-path /workspaces/codeql" > /home/vscode/.config/codeql/config
You can’t perform that action at this time.
0 commit comments