-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug: fix incorrect versions in schemas (#1635)
- Loading branch information
1 parent
ae0d350
commit bc3032c
Showing
6 changed files
with
14 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,6 +137,7 @@ jobs: | |
RUST_BACKTRACE: full | ||
|
||
# Try running cargo build on all other platforms. | ||
# | ||
# TODO: Maybe some of these should be allowed to fail? If so, I guess we can add back the "unofficial" MSRV, | ||
# I would also put android there. | ||
other-check: | ||
|
@@ -231,9 +232,6 @@ jobs: | |
no-clippy: true, | ||
} | ||
|
||
# Seems like cross' FreeBSD image is a bit broken? I | ||
# get build errors, may be related to this issue: | ||
# https://github.com/cross-rs/cross/issues/1291 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
|
@@ -252,24 +250,6 @@ jobs: | |
key: ${{ matrix.info.target }} | ||
cache-all-crates: true | ||
|
||
# - name: Test (default features) | ||
# uses: ClementTsang/[email protected] | ||
# if: ${{ matrix.info.no-default-features != true }} | ||
# with: | ||
# command: test | ||
# args: --all-targets --workspace --target=${{ matrix.info.target }} --locked | ||
# use-cross: ${{ matrix.info.cross }} | ||
# cross-version: ${{ matrix.info.cross-version || '0.2.5' }} | ||
|
||
# - name: Test (no features enabled) | ||
# uses: ClementTsang/[email protected] | ||
# if: ${{ matrix.info.no-default-features == true }} | ||
# with: | ||
# command: test | ||
# args: --all-targets --workspace --target=${{ matrix.info.target }} --locked --no-default-features | ||
# use-cross: ${{ matrix.info.cross }} | ||
# cross-version: ${{ matrix.info.cross-version || '0.2.5' }} | ||
|
||
- name: Check (default features) | ||
uses: ClementTsang/[email protected] | ||
if: ${{ matrix.info.no-default-features != true }} | ||
|
@@ -298,6 +278,11 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
info: | ||
# Seems like cross' FreeBSD image is a bit broken? I | ||
# get build errors, may be related to this issue: | ||
# https://github.com/cross-rs/cross/issues/1291 | ||
# | ||
# Alas, that's why we do it with VMs. | ||
- { | ||
type: "freebsd", | ||
os_release: "14.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters