Skip to content

Commit b701d2b

Browse files
committed
AAAAAARRRRRRRRGGGGGGGHHHHHHHH!!!!!!!!!!!!!!!!!!!!!!
1 parent b020e6e commit b701d2b

File tree

3 files changed

+410
-398
lines changed

3 files changed

+410
-398
lines changed

.github/actions/setup-builder/action.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,26 @@ inputs:
2525
runs:
2626
using: "composite"
2727
steps:
28+
- name: Cache Cargo
29+
uses: actions/cache@v3
30+
with:
31+
# these represent dependencies downloaded by cargo
32+
# and thus do not depend on the OS, arch nor rust version.
33+
#
34+
# source https://github.com/actions/cache/blob/main/examples.md#rust---cargo
35+
path: |
36+
/usr/local/cargo/bin/
37+
/usr/local/cargo/registry/index/
38+
/usr/local/cargo/registry/cache/
39+
/usr/local/cargo/git/db/
40+
key: cargo-cache3-
41+
- name: Cache Rust dependencies
42+
uses: actions/cache@v3
43+
with:
44+
# these represent compiled steps of both dependencies and arrow
45+
# and thus are specific for a particular OS, arch and rust version.
46+
path: /github/home/target
47+
key: ${{ runner.os }}-${{ runner.arch }}-target-cache3-${{ inputs.rust-version }}-
2848
- name: Install Build Dependencies
2949
shell: bash
3050
run: |
@@ -37,3 +57,4 @@ runs:
3757
rustup toolchain install ${{ inputs.rust-version }}
3858
rustup default ${{ inputs.rust-version }}
3959
rustup component add rustfmt
60+
echo "CARGO_TARGET_DIR=/github/home/target" >> $GITHUB_ENV

.github/workflows/miri.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
name: Rust
18+
name: MIRI
1919

2020
on:
2121
# always trigger

0 commit comments

Comments
 (0)