Skip to content

Commit 6214f9c

Browse files
authored
Merge pull request #196 from xen0n/updates
Dep and CI updates
2 parents bd62ede + 146ab05 commit 6214f9c

File tree

4 files changed

+17
-23
lines changed

4 files changed

+17
-23
lines changed

.github/workflows/mean_bean_ci.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: XAMPPRocky/get-github-release@v1
1717
id: cross
1818
with:
19-
owner: rust-embedded
19+
owner: cross-rs
2020
repo: cross
2121
matches: ${{ matrix.platform }}
2222
token: ${{ secrets.GITHUB_TOKEN }}
@@ -87,6 +87,7 @@ jobs:
8787
channel: [stable]
8888
target:
8989
# macOS
90+
- aarch64-apple-darwin
9091
- x86_64-apple-darwin
9192

9293
linux:
@@ -128,24 +129,15 @@ jobs:
128129
- armv7-unknown-linux-musleabihf
129130
- i686-unknown-linux-musl
130131
- mips-unknown-linux-musl
131-
# FIXME: cross doesn't know about these
132-
# - mips64-unknown-linux-muslabi64
133-
# - mips64el-unknown-linux-muslabi64
134-
#
135-
# add back the glibc dynamically linked glibc targets as a stop-gap
136-
# measure:
137-
- mips64-unknown-linux-gnuabi64
138-
- mips64el-unknown-linux-gnuabi64
139-
132+
- mips64-unknown-linux-muslabi64
133+
- mips64el-unknown-linux-muslabi64
140134
- mipsel-unknown-linux-musl
141135
- powerpc-unknown-linux-gnu
136+
- powerpc64-unknown-linux-gnu
142137
- powerpc64le-unknown-linux-gnu
143138
- s390x-unknown-linux-gnu
139+
- sparc64-unknown-linux-gnu
144140
- x86_64-unknown-linux-musl
145-
# FIXME: weird cross Docker image problem (cannot find image despite
146-
# being supported)
147-
# - powerpc64-unknown-linux-gnu
148-
# - sparc64-unknown-linux-gnu
149141

150142
# Android
151143
- aarch64-linux-android

.github/workflows/mean_bean_deploy.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: XAMPPRocky/get-github-release@v1
2323
id: cross
2424
with:
25-
owner: rust-embedded
25+
owner: cross-rs
2626
repo: cross
2727
matches: ${{ matrix.platform }}
2828
token: ${{ secrets.GITHUB_TOKEN }}
@@ -85,6 +85,7 @@ jobs:
8585
matrix:
8686
target:
8787
# macOS
88+
- aarch64-apple-darwin
8889
- x86_64-apple-darwin
8990
steps:
9091
- uses: actions/checkout@v2
@@ -123,9 +124,9 @@ jobs:
123124
matrix:
124125
target:
125126
# Linux
126-
- aarch64-unknown-linux-gnu
127-
- arm-unknown-linux-gnueabi
128-
- armv7-unknown-linux-gnueabihf
127+
- aarch64-unknown-linux-musl
128+
- arm-unknown-linux-musleabi
129+
- armv7-unknown-linux-musleabihf
129130
- i686-unknown-linux-musl
130131
- mips-unknown-linux-musl
131132
- mips64-unknown-linux-muslabi64
@@ -150,6 +151,7 @@ jobs:
150151
- x86_64-unknown-netbsd
151152
# Solaris
152153
- sparcv9-sun-solaris
154+
- x86_64-sun-solaris
153155
# Bare Metal
154156
# These are no-std embedded targets, so they will only build if your
155157
# crate is `no_std` compatible.

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ nightly = []
2020

2121

2222
[dependencies]
23-
atomicwrites = "0.3.1"
23+
atomicwrites = "0.3"
2424
clap = { version = "4", features = ["cargo", "wrap_help"] }
2525
regex = "1.7"
26-
serde = "1.0.149"
27-
serde_derive = "1.0.149"
26+
serde = "1.0"
27+
serde_derive = "1.0"
2828
strsim = "0.10"
2929
dirs = "4.0"

0 commit comments

Comments
 (0)