Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rustflags = [
"-Wclippy::debug_assert_with_mut_call",
"-Wclippy::default_trait_access",
"-Wclippy::doc_markdown",
"-Wclippy::empty_enum",
"-Wclippy::empty_enums",
"-Wclippy::enum_glob_use",
"-Wclippy::expl_impl_clone_on_copy",
"-Wclippy::explicit_deref_methods",
Expand Down Expand Up @@ -45,7 +45,6 @@ rustflags = [
"-Wclippy::map_err_ignore",
"-Wclippy::map_flatten",
"-Wclippy::map_unwrap_or",
"-Wclippy::match_on_vec_items",
"-Wclippy::match_same_arms",
"-Wclippy::match_wild_err_arm",
"-Wclippy::match_wildcard_for_single_variants",
Expand All @@ -68,7 +67,6 @@ rustflags = [
"-Wclippy::single_match_else",
"-Wclippy::string_add_assign",
"-Wclippy::string_lit_as_bytes",
"-Wclippy::string_to_string",
"-Wclippy::todo",
"-Wclippy::trait_duplication_in_bounds",
"-Wclippy::uninlined_format_args",
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install-llvm/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Install LLVM
description: Installs all LLVM binaries required to build Mun.
runs:
using: 'node16'
using: 'node24'
main: 'dist/index.js'
32,481 changes: 29,970 additions & 2,511 deletions .github/actions/install-llvm/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/install-llvm/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/install-llvm/dist/sourcemap-register.js

Large diffs are not rendered by default.

135 changes: 64 additions & 71 deletions .github/actions/install-llvm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions .github/actions/install-llvm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1"
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0"
"@vercel/ncc": "^0.45.0"
},
"overrides": {
"undici": "6.28.0"
}
}
16 changes: 11 additions & 5 deletions .github/workflows/bump-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Set up Pixi
uses: prefix-dev/setup-pixi@v0.10.1
with:
cache: true
frozen: true

- name: Install cargo-release
run: cargo install cargo-release
run: pixi run cargo install cargo-release --locked

- name: Setup post-release version bump
run: |
Expand All @@ -23,7 +29,7 @@ jobs:
git config user.name 'Mun Auto Releaser'
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
# Read the current version from Cargo.toml
current_version=$(cargo metadata --format-version 1 --no-deps | \
current_version=$(pixi run cargo metadata --format-version 1 --no-deps | \
jq --raw-output '.packages | .[] | select(.name == "mun").version')
# Sanity check: current version should be 0.X.Y
if ! grep -q '^0\.[0-9]\+\.[0-9]\+$' <<< "${current_version}"; then
Expand All @@ -34,7 +40,7 @@ jobs:
next_version=0.$((minor_version + 1)).0-dev
echo "Bumping version to ${next_version}"
# See release.yml for meaning of these arguments
cargo release "${next_version}" \
pixi run cargo release "${next_version}" \
--workspace \
--no-publish \
--execute \
Expand All @@ -44,7 +50,7 @@ jobs:
--exclude tools

- name: Create PR
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
delete-branch: true
base: "main"
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/bump-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Set up Pixi
uses: prefix-dev/setup-pixi@v0.10.1
with:
cache: true
frozen: true

- name: Install cargo-release
run: cargo install cargo-release
run: pixi run cargo install cargo-release --locked

- name: Setup release
run: |
Expand All @@ -30,7 +36,7 @@ jobs:
# --no-push: do not push the update commits
# --dependent-version upgrade: change 0.X.0-dev in internal dependencies to 0.X.0
# --exclude: ignore those packages
cargo release release \
pixi run cargo release release \
--workspace \
--no-publish \
--execute \
Expand All @@ -40,7 +46,7 @@ jobs:
--dependent-version upgrade \
--exclude tools
- name: Create PR
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
delete-branch: true
base: "main"
Expand Down
Loading
Loading