Remove MacOS Github runner
Some checks failed
/ run-and-compile-ubuntu (push) Has been cancelled
/ run-and-compile-windows (push) Has been cancelled

This commit is contained in:
Krzosa Karol
2024-06-14 11:33:46 +02:00
parent 827e838550
commit ced67bbb96
4 changed files with 27 additions and 28 deletions

View File

@@ -7,12 +7,6 @@ jobs:
- run: sudo apt install g++
- run: sudo apt install clang
- run: g++ -o bld src/build_tool/main.cpp -g -lm && ./bld
run-and-compile-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: brew install llvm
- run: clang++ src/build_tool/main.cpp -std=c++11 -o bld && ./bld
run-and-compile-windows:
runs-on: windows-latest
steps:
@@ -22,4 +16,10 @@ jobs:
arch: x64
- uses: actions/checkout@v4
- run: cl.exe src/build_tool/main.cpp /Fe:bld.exe && bld.exe
shell: cmd
shell: cmd
# run-and-compile-mac:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - run: brew install llvm
# - run: clang++ src/build_tool/main.cpp -std=c++11 -o bld && ./bld --threads 1