Skip to content

Commit

Permalink
Testing parallel workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oulap committed Sep 28, 2024
1 parent 5a61fda commit fd714ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
name: Build and upload artefact
strategy:
max-parallel: 1
# max-parallel: 1
matrix:
os: [macos-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11"]
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
name: Test the wheel
needs: build
strategy:
max-parallel: 1
# max-parallel: 1
matrix:
os: [macos-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11"]
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ endif()
message(STATUS "CMAKE_C_COMPILER=${CMAKE_C_COMPILER}, CMAKE_C_COMPILER_ID=${CMAKE_C_COMPILER_ID}, CMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}, CMAKE_CXX_COMPILER_ID=${CMAKE_CXX_COMPILER_ID}")

# warnings
if(NOT APPLE_ARM64)
if(NOT DEFINED ENV{APPLE_ARM64} OR $ENV{APPLE_ARM64} MATCHES "OFF")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror -Wno-absolute-value -Wno-sign-compare -Wno-write-strings -Wno-unused-result -Wno-unused-parameter")
endif()

Expand Down

0 comments on commit fd714ca

Please sign in to comment.