Skip to content

Commit

Permalink
ci: macos not workin for some resaion
Browse files Browse the repository at this point in the history
  • Loading branch information
Calbabreaker committed Dec 12, 2024
1 parent 9093a5c commit 3ddbf14
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.9"
- name: Run run_tests.py
run: python tests/run_tests.py

Expand Down
2 changes: 1 addition & 1 deletion tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def exec_shell(cmd):
if not os.path.exists("./Makefile"):
exec_shell("cmake ..")

exec_shell(f"make -j{multiprocessing.cpu_count()}")
exec_shell(f"cmake --build . --parallel {multiprocessing.cpu_count()}")

if not args.run:
continue
Expand Down
4 changes: 2 additions & 2 deletions tests/test_remote/yacpm.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"glm": {
"version": "fc8f4bb442b9540969f2f3f351c4960d91bca17a",
"dependents": [
"yacpm_library_test",
"imgui"
"imgui",
"yacpm_library_test"
]
},
"imgui": {
Expand Down

0 comments on commit 3ddbf14

Please sign in to comment.