Fix cache, misc changes

This commit is contained in:
Krzosa Karol
2024-01-13 21:18:08 +01:00
parent 1b6d908b6b
commit c375cdf04f
12 changed files with 28 additions and 26 deletions

View File

@@ -5,13 +5,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: sudo apt install g++
- run: g++ build_tool/build_main.cpp -o bld && ./bld
- run: g++ build_tool/main.cpp -o bld && ./bld
run-and-compile-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: brew install llvm
- run: clang++ build_tool/build_main.cpp -std=c++11 -o bld && ./bld
- run: clang++ build_tool/main.cpp -std=c++11 -o bld && ./bld
run-and-compile-windows:
runs-on: windows-latest
steps: