Skip to content

Commit

Permalink
Update boost environment
Browse files Browse the repository at this point in the history
  • Loading branch information
doganulus committed Nov 15, 2023
1 parent 48fab16 commit 7ef4dee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .devcontainer/boostdev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM ubuntu:22.04

ARG BOOST_VERSION=1.82.0
ARG BOOST_VERSION=1.83.0
ARG CATCH_VERSION=3.4.0

RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install \
Expand All @@ -21,7 +22,7 @@ RUN git clone -j$(nproc) --recursive --depth 1 --branch boost-${BOOST_VERSION} h
&& ./b2 -j$(nproc) install \
&& cd / && rm -rf /tmp/boost

RUN git clone --depth 1 --branch v3.3.2 https://github.com/catchorg/Catch2.git /tmp/catch2 \
RUN git clone --depth 1 --branch v${CATCH_VERSION} https://github.com/catchorg/Catch2.git /tmp/catch2 \
&& cmake -S/tmp/catch2 -B/tmp/catch2/build \
-DBUILD_TESTING=OFF \
-DCATCH_INSTALL_DOCS=OFF \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/boostdev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: bounverif/boostdev
VERSION: 1.82.0
VERSION: 1.83.0

jobs:
build-and-push-image:
Expand Down

0 comments on commit 7ef4dee

Please sign in to comment.