renaming macos to Darwin #351
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: Validate all Python dependencies work together | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
types: [opened, synchronize] | ||
paths-ignore: | ||
- '**/*.md' | ||
- '*.md' | ||
permissions: {} | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
model-signing: | ||
name: Test model signing dependencies | ||
runs-on: ${{ runner.os }} | ||
Check failure on line 21 in .github/workflows/validate_deps.yml GitHub Actions / Validate all Python dependencies work togetherInvalid workflow file
|
||
strategy: | ||
fail-fast: false # Don't cancel other jobs if one fails | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
include: | ||
- os: macos-latest | ||
os_family: Darwin | ||
- os: ubuntu-latest | ||
os_family: Linux | ||
- os: windows-latest | ||
os_family: Windows | ||
steps: | ||
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 | ||
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 | ||
with: | ||
python-version: 3.11 | ||
cache: pip | ||
cache-dependency-path: model_signing/install/requirements_${{ matrix.include.os_family }}.txt | ||
- name: Install dependencies | ||
run: | | ||
set -exuo pipefail | ||
python -m venv venv | ||
.github/workflows/scripts/venv_activate.sh | ||
python -m pip install --require-hashes -r model_signing/install/requirements_${{ matrix.include.os_family }}.txt | ||
slsa-for-ml: | ||
name: Test SLSA for ML demo dependencies | ||
runs-on: ${{ runner.os }} | ||
strategy: | ||
fail-fast: false # Don't cancel other jobs if one fails | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
steps: | ||
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 | ||
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 | ||
with: | ||
python-version: 3.11 | ||
cache: pip | ||
cache-dependency-path: slsa_for_models/install/requirements_${{ matrix.include.os_family }}.txt | ||
- name: Install dependencies | ||
run: | | ||
set -exuo pipefail | ||
python -m venv venv | ||
.github/workflows/scripts/venv_activate.sh | ||
python -m pip install --require-hashes -r slsa_for_models/install/requirements_${{ matrix.include.os_family }}.txt |