Skip to content

Commit

Permalink
chore: remove musl builds
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Oct 18, 2024
1 parent a296ca2 commit 6b089f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
AWS_LC_SYS_PREBUILT_NASM: 1
RUSTFLAGS: -C link-arg=-lstdc++
steps:
- name: enable windows longpaths
run: |
Expand Down
7 changes: 1 addition & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,10 @@ ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Whether to install an updater program
install-updater = true
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"

[workspace.metadata.dist.dependencies.apt]
musl = { version = "*", targets = ["x86_64-unknown-linux-musl"] }
musl-tools = { version = "*", targets = ["x86_64-unknown-linux-musl"] }
"g++-multilib" = { version = "*", targets = ["x86_64-unknown-linux-musl"] }

0 comments on commit 6b089f1

Please sign in to comment.