From e819e764b4b362f9050e99a305a7fae1a57b6797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Fri, 6 Sep 2024 15:08:21 -0300 Subject: [PATCH] ci: remove boost dependency. --- .github/workflows/build-every.yml | 2 +- .github/workflows/build.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-every.yml b/.github/workflows/build-every.yml index 3364cda9..a3cc8362 100644 --- a/.github/workflows/build-every.yml +++ b/.github/workflows/build-every.yml @@ -9,7 +9,7 @@ jobs: image: alpine:edge steps: - name: Install dependencies - run: apk add git meson gcc g++ musl-dev boost-dev + run: apk add git meson gcc g++ musl-dev - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce70a74e..90ca4417 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,9 +18,9 @@ jobs: strategy: matrix: distro: - - { image: "debian:12", update_cmd: "apt update", install_cmd: "apt install -y", packages: "libboost-dev" } - - { image: "alpine:3.18", update_cmd: "true", install_cmd: "apk add --no-cache", packages: "g++ musl-dev boost-dev" } - - { image: "alpine:edge", update_cmd: "true", install_cmd: "apk add --no-cache", packages: "g++ musl-dev boost-dev" } + - { image: "debian:12", update_cmd: "apt update", install_cmd: "apt install -y" } + - { image: "alpine:3.18", update_cmd: "true", install_cmd: "apk add --no-cache", packages: "g++ musl-dev" } + - { image: "alpine:edge", update_cmd: "true", install_cmd: "apk add --no-cache", packages: "g++ musl-dev" } compiler: - { cc: gcc, cxx: g++ } - { cc: clang, cxx: clang++ }