Skip to content

Commit 94b5696

Browse files
committed
remove cache from GHA
It used to cache xargo, but Miri doesn't install xargo any more
1 parent a938161 commit 94b5696

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

.github/workflows/ci.yml

-34
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v3
18-
- uses: actions/cache@v3
19-
with:
20-
path: |
21-
~/.cargo/bin/
22-
~/.cargo/.crates.toml
23-
~/.cargo/.crates2.json
24-
key: ${{ runner.os }}-cargo-bin
2518
- name: Setup environment
2619
run: bash ./ci-setup.sh
2720
- name: Test
@@ -31,16 +24,6 @@ jobs:
3124
runs-on: ubuntu-latest
3225
steps:
3326
- uses: actions/checkout@v3
34-
- uses: actions/cache@v3
35-
with:
36-
path: |
37-
~/.cargo/bin/
38-
~/.cargo/.crates.toml
39-
~/.cargo/.crates2.json
40-
# FIXME: this does not work as intended!
41-
# GHA caches are write-once, so if xargo updates we will keep having
42-
# old xargo in our cache.
43-
key: ${{ runner.os }}-cargo-bin
4427
- name: Setup environment
4528
run: bash ./ci-setup.sh
4629
- name: Test
@@ -50,16 +33,6 @@ jobs:
5033
runs-on: ubuntu-latest
5134
steps:
5235
- uses: actions/checkout@v3
53-
- uses: actions/cache@v3
54-
with:
55-
path: |
56-
~/.cargo/bin/
57-
~/.cargo/.crates.toml
58-
~/.cargo/.crates2.json
59-
# FIXME: this does not work as intended!
60-
# GHA caches are write-once, so if xargo updates we will keep having
61-
# old xargo in our cache.
62-
key: ${{ runner.os }}-cargo-bin
6336
- name: Setup environment
6437
run: bash ./ci-setup.sh
6538
- name: Test
@@ -69,13 +42,6 @@ jobs:
6942
runs-on: ubuntu-latest
7043
steps:
7144
- uses: actions/checkout@v3
72-
- uses: actions/cache@v3
73-
with:
74-
path: |
75-
~/.cargo/bin/
76-
~/.cargo/.crates.toml
77-
~/.cargo/.crates2.json
78-
key: ${{ runner.os }}-cargo-bin
7945
- name: Setup environment
8046
run: bash ./ci-setup.sh
8147
- name: Test

0 commit comments

Comments
 (0)