Skip to content

Commit

Permalink
SQUASH
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanCoding committed Jul 25, 2024
1 parent 3cc8ba3 commit bf39fc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci-cpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ env:
VAAS_PASSWORD: ${{secrets.VAAS_PASSWORD}}
jobs:
cpp-build:
needs: cpp-toolchain
name: Build & Test C++ SDK
runs-on: ubuntu-latest
container: ghcr.io/gdatasoftwareag/vaas/cpp-toolchain
Expand Down
6 changes: 3 additions & 3 deletions cpp/Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
FROM ubuntu:22.04

RUN apt-get update -qq && \
# install basic build tools
apt-get install -y --no-install-recommends git ca-certificates curl zip unzip tar build-essential cmake make libssl3 libssl-dev && \
# install dependencies
apt-get install -y --no-install-recommends git ca-certificates curl zip unzip tar build-essential cmake make pkg-config libssl3 libssl-dev linux-libc-dev && \
# install vcpkg
cd /usr/local && \
git clone https://github.com/microsoft/vcpkg.git && \
cd vcpkg && ./bootstrap-vcpkg.sh

ENV VCPKG_ROOT="/usr/local/vcpkg/""
ENV VCPKG_ROOT="/usr/local/vcpkg/"
ENV PATH="$VCPKG_ROOT:$PATH"


Expand Down

0 comments on commit bf39fc7

Please sign in to comment.