scripts: use venv for python dependencies #18
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: Minimal install | |
on: | |
pull_request: | |
branches: [ develop, main, release/** ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Minimal install on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-14, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Update | |
if: startswith(matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get update | |
- name: Restore build caches | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ github.job }} | |
- name: Install platform | |
env: | |
TERM: linux | |
run: | | |
cd scripts | |
./set_vars.sh | |
./install_minimal_platform.sh |