From 237ada812d0373f2efc3adee06ad50e907190cb5 Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Wed, 6 Nov 2024 10:58:42 +0100 Subject: [PATCH] Change the venv path to match the Linux templates --- .github/workflows/MacOS build template.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/MacOS build template.yml b/.github/workflows/MacOS build template.yml index 00d19db..a32dbd4 100644 --- a/.github/workflows/MacOS build template.yml +++ b/.github/workflows/MacOS build template.yml @@ -19,8 +19,8 @@ jobs: brew update brew upgrade brew install ninja zlib - python3 -m venv my_venv - source my_venv/bin/activate + python3 -m venv venv + source venv/bin/activate pip install jsonref - name: Download artifacts @@ -63,7 +63,7 @@ jobs: # ----- Building & uploading ----- - name: Build ThunderInterfaces run: | - source my_venv/bin/activate + source venv/bin/activate cmake -G Ninja -S ThunderInterfaces -B ${{matrix.build_type}}/build/ThunderInterfaces \ -DCMAKE_CXX_FLAGS="-Wall -Wextra -Wpedantic -Werror" \ -DCMAKE_C_FLAGS="-Wall -Wextra -Wpedantic -Werror" \