Browse Source

python3 -m asv

pull/4751/head
Evgeni Burovski 2 years ago
parent
commit
9f98cc9285
1 changed files with 2 additions and 12 deletions
  1. +2
    -12
      .github/workflows/cirun-asv.yml

+ 2
- 12
.github/workflows/cirun-asv.yml View File

@@ -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:


Loading…
Cancel
Save