Skip to content

Commit

Permalink
Versions of c-s-c after 0.37 require Rust 1.81+ (#93)
Browse files Browse the repository at this point in the history
* update rust versions

* Only test oldest supported version

* debug cache

* List caches

* fix grep

* unnecessary quotes

* remove debug
  • Loading branch information
SmolSir authored Jan 13, 2025
1 parent 0592d5a commit 61b07a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
toolchain: ['1.80', 'stable', 'beta']
toolchain: ["1.81", "stable", "beta"]
experimental: [false]
include:
- os: 'ubuntu-latest'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
prefix-key: testprefix
- name: Check if the cache directory exists
run: |
if ! grep -q "ref_slice-1.2.1/src/lib.rs" "semver-checks/target/semver-checks/cache/registry-ref_slice-1_2_1.json"; then
if ! grep -q "ref_slice-1.2.1/src/lib.rs" semver-checks/target/semver-checks/cache/ref_slice-1_2_1*.json; then
echo "Non-existent or invalid cache file!"
exit 1
fi
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
prefix-key: testprefix
- name: Check if the cache directory exists
run: |
if ! grep -q "ref_slice-1.2.1/src/lib.rs" "semver-checks/target/semver-checks/cache/registry-ref_slice-1_2_1.json"; then
if ! grep -q "ref_slice-1.2.1/src/lib.rs" semver-checks/target/semver-checks/cache/ref_slice-1_2_1*.json; then
echo "Non-existent or invalid cache file!"
exit 1
fi
Expand Down

0 comments on commit 61b07a9

Please sign in to comment.