cargo update and fix macos CI (#3067) #122
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
# Copyright Kani Contributors | |
# SPDX-License-Identifier: Apache-2.0 OR MIT | |
# Run the regression job on Apple M1 only on commits to `main` | |
name: Kani CI M1 | |
on: | |
push: | |
branches: | |
- 'main' | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
regression: | |
runs-on: macos-13-xlarge | |
steps: | |
- name: Checkout Kani | |
uses: actions/checkout@v4 | |
- name: Setup Kani Dependencies | |
uses: ./.github/actions/setup | |
with: | |
os: macos-13-xlarge | |
- name: Build Kani | |
run: cargo build-dev | |
- name: Execute Kani regression | |
run: ./scripts/kani-regression.sh |