diff --git a/.github/workflows/build-every.yml b/.github/workflows/build-every.yml index 3364cda..a3cc836 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 ce70a74..90ca441 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++ }