From 9f98cc9285410b0df104d1e0122424e26effdfc1 Mon Sep 17 00:00:00 2001 From: Evgeni Burovski Date: Fri, 14 Jun 2024 10:52:32 +0300 Subject: [PATCH] python3 -m asv --- .github/workflows/cirun-asv.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/cirun-asv.yml b/.github/workflows/cirun-asv.yml index 345e58753..76a66f928 100644 --- a/.github/workflows/cirun-asv.yml +++ b/.github/workflows/cirun-asv.yml @@ -70,28 +70,18 @@ jobs: - name: Set and log asv machine configuration run: | - asv machine --yes --config asv.conf.json + python3 -m asv machine --yes --config asv.conf.json echo "Machine Configuration:" cat ~/.asv-machine.json rm ~/.asv-machine.json echo "Setting machine name to $MACHINE_NAME" - asv machine --machine $MACHINE_NAME --yes --config $ASV_CONFIG -v + python3 -m asv machine --machine $MACHINE_NAME --yes --config $ASV_CONFIG -v cat ~/.asv-machine.json ###################### - - name: Install Dependencies - run: | - if [ "$RUNNER_OS" == "Linux" ]; then - sudo apt update - sudo apt-get install -y gfortran cmake ccache libtinfo5 python3-pip pkg-config - else - echo "::error::$RUNNER_OS not supported" - exit 1 - fi - - name: Compilation cache uses: actions/cache@v3 with: