Skip to content

Commit cb62cd4

Browse files
committed
ci: fix ci
1 parent 8daf0f7 commit cb62cd4

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

.github/workflows/test_upload.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,12 @@ jobs:
6161
- target: aarch64-unknown-linux-gnu
6262
os: ubuntu-latest
6363
build_tool: cross
64-
# - target: x86_64-unknown-freebsd
65-
# os: ubuntu-latest
66-
# - target: x86_64-unknown-illumos
67-
# os: ubuntu-latest
64+
- target: x86_64-unknown-freebsd
65+
os: ubuntu-latest
66+
build_tool: cross
67+
- target: x86_64-unknown-illumos
68+
os: ubuntu-latest
69+
build_tool: cross
6870
runs-on: ${{ matrix.os }}
6971
steps:
7072
- uses: actions/checkout@v3

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ repository = "https://github.com/Binbiubiubiu/git-semver-tags"
1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[dependencies]
18-
clap = { version = "4.0.29", features = ["derive","cargo"] }
18+
clap = { version = "4.0.29", features = ["derive", "cargo"] }
1919
lazy_static = "1.4.0"
2020
regex = "1.7.0"
2121
self_update = { version = "0.34.0", features = [
2222
"archive-tar",
2323
"archive-zip",
2424
"compression-flate2",
2525
"compression-zip-deflate",
26-
] }
26+
"rustls",
27+
], default-features = false }
2728
semver = "1.0.14"
2829

2930
[dev-dependencies]

Cross.toml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
[target.aarch64-unknown-linux-gnu]
2-
pre-build = [
3-
"dpkg --add-architecture $CROSS_DEB_ARCH",
4-
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
5-
]
1+
# [target.x86_64-unknown-linux-musl]
2+
# pre-build = [
3+
# "dpkg --add-architecture $CROSS_DEB_ARCH",
4+
# "apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
5+
# ]
6+
7+
# [target.aarch64-unknown-linux-gnu]
8+
# pre-build = [
9+
# "dpkg --add-architecture $CROSS_DEB_ARCH",
10+
# "apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
11+
# ]

0 commit comments

Comments
 (0)