Skip to content

Commit

Permalink
ci: remove boost dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericonr committed Sep 10, 2024
1 parent 44eddf1 commit dc24c1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-every.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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++ }
Expand Down

0 comments on commit dc24c1a

Please sign in to comment.