diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 25ce263b..86daf6d8 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -32,7 +32,7 @@ runs: shell: bash run: | sudo apt-get update - sudo apt-get install -y wget xz-utils ca-certificates gcc make git + sudo apt-get install -y wget xz-utils ca-certificates clang make git # Zig version used from the `minimum_zig_version` field in build.zig.zon - uses: mlugg/setup-zig@v2 diff --git a/Dockerfile b/Dockerfile index dd8f7fac..adce8fd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ ARG TARGETPLATFORM RUN apt-get update -yq && \ apt-get install -yq xz-utils ca-certificates \ - gcc make curl git + pkg-config libglib2.0-dev \ + clang make curl git # Get Rust RUN curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal -y diff --git a/README.md b/README.md index b2b695f0..521c8685 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,8 @@ For **Debian/Ubuntu based Linux**: ``` sudo apt install xz-utils ca-certificates \ - gcc make curl git + pkg-config libglib2.0-dev \ + clang make curl git ``` You also need to [install Rust](https://rust-lang.org/tools/install/).