Skip to content

Commit d083dbb

Browse files
authored
Merge branch 'master' into linker-errors
2 parents 98b7dc0 + 3ad4d9c commit d083dbb

File tree

22 files changed

+307
-240
lines changed

22 files changed

+307
-240
lines changed

.github/workflows/publish.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Release-plz
2+
3+
permissions:
4+
pull-requests: write
5+
contents: write
6+
7+
on:
8+
push:
9+
branches:
10+
- master
11+
12+
jobs:
13+
release-plz:
14+
name: Release-plz
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
submodules: true
22+
- name: Install Rust (rustup)
23+
run: rustup update nightly --no-self-update && rustup default nightly
24+
- name: Publish `libm` as part of builtins, rather than its own crate
25+
run: rm libm/Cargo.toml
26+
- name: Run release-plz
27+
uses: MarcoIeni/release-plz-action@v0.5
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

.release-plz.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[workspace]
2+
changelog_update = false
3+
semver_check = false
4+
5+
# As part of the release process, we delete `libm/Cargo.toml`. Since
6+
# this is only run in CI, we shouldn't need to worry about it.
7+
allow_dirty = true
8+
publish_allow_dirty = true

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
33
name = "compiler_builtins"
4-
version = "0.1.113"
4+
version = "0.1.118"
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rust-lang/compiler-builtins"

0 commit comments

Comments
 (0)