MSVC: detection fixes #1604
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
# This is a basic workflow to help you get started with Actions | |
name: Full Test Suite on Linux | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "runtest" | |
runtest: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-22.04', 'ubuntu-24.04'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/[email protected] | |
- name: Install Ubuntu packages $${matrix.os}} | |
run: | | |
sudo apt-get update | |
sudo apt-get install libtirpc-dev | |
- name: Set up Python 3.12 ${{ matrix.os }} | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Install Python dependencies ${{ matrix.os }} | |
run: | | |
python -m pip install --progress-bar off --upgrade pip | |
python -m pip install --progress-bar off -r requirements-dev.txt | |
# sudo apt-get update | |
- name: runtest ${{ matrix.os }} | |
run: | | |
python runtest.py --all --time --jobs=4 | |
- name: Archive Failed tests ${{ matrix.os }} | |
uses: actions/[email protected] | |
with: | |
name: ${{ matrix.os }}-failed-tests | |
path: | | |
failed_tests.log |