build: bump cc from 1.1.34 to 1.1.37 #4027
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS | |
on: | |
schedule: | |
# Run once every day at 6:40AM UTC. | |
- cron: "40 6 * * *" | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUST_BACKTRACE: short | |
jobs: | |
run-tests: | |
if: contains(github.head_ref, 'macos') || github.head_ref == '' | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.74 | |
override: true | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab | |
- name: Compile | |
run: cargo build --benches --tests | |
# TODO(#1416): re-enable once tests are passing on Git v2.46+ | |
# - name: Run tests | |
# timeout-minutes: 30 | |
# run: | | |
# export RUST_BACKTRACE=1 | |
# export TEST_GIT=$(which git) | |
# export TEST_GIT_EXEC_PATH=$("$TEST_GIT" --exec-path) | |
# cargo test --workspace --no-fail-fast |