python3 -m asv

This commit is contained in:
Evgeni Burovski 2024-06-14 10:52:32 +03:00
parent c5ab738833
commit 9f98cc9285
1 changed files with 2 additions and 12 deletions

View File

@ -70,28 +70,18 @@ jobs:
- name: Set and log asv machine configuration - name: Set and log asv machine configuration
run: | run: |
asv machine --yes --config asv.conf.json python3 -m asv machine --yes --config asv.conf.json
echo "Machine Configuration:" echo "Machine Configuration:"
cat ~/.asv-machine.json cat ~/.asv-machine.json
rm ~/.asv-machine.json rm ~/.asv-machine.json
echo "Setting machine name to $MACHINE_NAME" 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 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 - name: Compilation cache
uses: actions/cache@v3 uses: actions/cache@v3
with: with: