summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcyqsimon <28627918+cyqsimon@users.noreply.github.com>2024-04-15 18:04:55 +0800
committerGitHub <noreply@github.com>2024-04-15 18:04:55 +0800
commit1ce0311c2337408a2450180a73a82d2946296148 (patch)
tree8e55a8ad69afbe9f4e3b7fa8d2075539eadeb258
parent2ac352d490a746acaf92f8259cb610f8d3e944fe (diff)
CI: Remove `musl-tools` install step (#402)
* Test: what if we don't install MUSL tools? * Write changelog
-rw-r--r--.github/workflows/ci.yaml4
-rw-r--r--CHANGELOG.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index a934608..c34a707 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -93,10 +93,6 @@ jobs:
targets: ${{ matrix.target }}
components: clippy
- - name: Install musl-tools
- if: matrix.build == 'linux-x64-musl'
- run: sudo apt-get install -y --no-install-recommends musl-tools
-
- name: Install cross
if: matrix.cargo == 'cross'
# The latest realese of `cross` is not able to build/link for `aarch64-linux-android`
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 78ccf0b..70be1d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,6 +29,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
* CI: Configure dependabot grouping #395 - @cyqsimon
* CI refactor #399 - @cyqsimon
+## Removed
+
+* CI: Remove musl-tools install step #402 - @cyqsimon
+
## [0.22.2] - 2024-01-28
## Added