Skip to content

Allow specific files to be re-encrypted with --rekey #446

Allow specific files to be re-encrypted with --rekey

Allow specific files to be re-encrypted with --rekey #446

Workflow file for this run

name: macOS aarch64
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: aarch64-apple-darwin
override: true
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Set SDKROOT
run: echo "SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path)" >> "$GITHUB_ENV"
- name: Set MACOSX_DEPLOYMENT_TARGET
run: echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version)" >> "$GITHUB_ENV"
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --target aarch64-apple-darwin