summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.github/actions/mullvad-build-env/action.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/.github/actions/mullvad-build-env/action.yml b/.github/actions/mullvad-build-env/action.yml
index 7df405d391..3293ad2cc2 100644
--- a/.github/actions/mullvad-build-env/action.yml
+++ b/.github/actions/mullvad-build-env/action.yml
@@ -13,13 +13,13 @@ inputs:
description: "Token for setup-protoc (defaults to GITHUB_TOKEN)"
default: "${{ github.token }}"
required: false
- rust-cache-targets:
- description: >-
- Determines whether workspace `target` directories are cached. If `false`,
- only the cargo registry will be cached. If `true`, the `target` directories
- will be cached as well.
- default: "false"
- required: false
+ #rust-cache-targets:
+ # description: >-
+ # Determines whether workspace `target` directories are cached. If `false`,
+ # only the cargo registry will be cached. If `true`, the `target` directories
+ # will be cached as well.
+ # default: "false"
+ # required: false
runs:
using: "composite"
steps:
@@ -46,13 +46,13 @@ runs:
echo "CARGO_TARGET_DIR=$CARGO_TARGET_DIR" >> $GITHUB_ENV
fi
- - name: Setup Rust cache
- uses: Swatinem/rust-cache@v2
- with:
- add-job-id-key: "false" # Preserve cache across jobs
- cache-directories: >-
- ${{ inputs.rust-cache-targets == 'true' && env.CARGO_TARGET_DIR || '' }}
- cache-targets: ${{ inputs.rust-cache-targets }}
+ #- name: Setup Rust cache
+ # uses: Swatinem/rust-cache@v2
+ # with:
+ # add-job-id-key: "false" # Preserve cache across jobs
+ # cache-directories: >-
+ # ${{ inputs.rust-cache-targets == 'true' && env.CARGO_TARGET_DIR || '' }}
+ # cache-targets: ${{ inputs.rust-cache-targets }}
- name: Install Protoc
uses: arduino/setup-protoc@v3