Skip to content

Trying to fix release - #155

Merged
sammuti merged 1 commit into
developfrom
try-to-fix-release
Jan 8, 2026
Merged

Trying to fix release#155
sammuti merged 1 commit into
developfrom
try-to-fix-release

Conversation

@sammuti

@sammutisammuti commented Jan 8, 2026

Copy link
Copy Markdown
Contributor

with

dist plan --output-format=json | jq '.ci.github.artifacts_matrix'

Before

{
"include": [
{
"runner": "macos-13",
"host": "x86_64-apple-darwin",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=aarch64-apple-darwin",
"targets": [
"aarch64-apple-darwin"
],
"cache_provider": "github"
},
{
"runner": "ubuntu-latest",
"host": "x86_64-unknown-linux-gnu",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=aarch64-unknown-linux-gnu",
"targets": [
"aarch64-unknown-linux-gnu"
],
"packages_install": "if ! command -v cargo-zigbuild > /dev/null 2>&1; then\n if ! command -v pip3 > /dev/null 2>&1; then\n dnf install --assumeyes python3-pip\n pip3 install --upgrade pip\n fi\n pip3 install cargo-zigbuild\nfi", "cache_provider": "github"
},
{
"runner": "macos-13",
"host": "x86_64-apple-darwin",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=x86_64-apple-darwin",
"targets": [
"x86_64-apple-darwin"
],
"cache_provider": "github"
},
{
"runner": "ubuntu-latest",
"host": "x86_64-unknown-linux-gnu",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=x86_64-unknown-linux-gnu",
"targets": [
"x86_64-unknown-linux-gnu"
],
"cache_provider": "github"
},
{
"runner": "ubuntu-22.04",
"host": "x86_64-unknown-linux-gnu",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=x86_64-unknown-linux-musl",
"targets": [
"x86_64-unknown-linux-musl"
],
"packages_install": "sudo apt-get update\nsudo apt-get install musl-tools",
"cache_provider": "github"
}
]
}

After

{
"include": [
{
"runner": "macos-15",
"host": "aarch64-apple-darwin",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=aarch64-apple-darwin",
"targets": [
"aarch64-apple-darwin"
],
"cache_provider": "github"
},
{
"runner": "ubuntu-latest",
"host": "x86_64-unknown-linux-gnu",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=aarch64-unknown-linux-gnu",
"targets": [
"aarch64-unknown-linux-gnu"
],
"packages_install": "if ! command -v cargo-zigbuild > /dev/null 2>&1; then\n if ! command -v pip3 > /dev/null 2>&1; then\n dnf install --assumeyes python3-pip\n pip3 install --upgrade pip\n fi\n pip3 install cargo-zigbuild\nfi", "cache_provider": "github"
},
{
"runner": "macos-15",
"host": "aarch64-apple-darwin",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=x86_64-apple-darwin",
"targets": [
"x86_64-apple-darwin"
],
"cache_provider": "github"
},
{
"runner": "ubuntu-latest",
"host": "x86_64-unknown-linux-gnu",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=x86_64-unknown-linux-gnu",
"targets": [
"x86_64-unknown-linux-gnu"
],
"cache_provider": "github"
},
{
"runner": "ubuntu-22.04",
"host": "x86_64-unknown-linux-gnu",
"install_dist": {
"shell": "sh",
"run": "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
},
"dist_args": "--artifacts=local --target=x86_64-unknown-linux-musl",
"targets": [
"x86_64-unknown-linux-musl"
],
"packages_install": "sudo apt-get update\nsudo apt-get install musl-tools",
"cache_provider": "github"
}
]
}

@sammuti
sammuti requested a review from bradheJanuary 8, 2026 16:25
@sammuti
sammuti changed the base branch from main to developJanuary 8, 2026 16:26
@towertower deleted a comment from github-actionsBotJan 8, 2026

@bradhebradhe left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, good find.

@sammuti
sammuti merged commit e79cdf1 into developJan 8, 2026
7 checks passed
@sammuti
sammuti deleted the try-to-fix-release branch January 8, 2026 16:32
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@sammuti@bradhe