Mac actions update

This commit is contained in:
Krzosa Karol
2024-01-05 21:18:08 +01:00
parent 4af0a18e15
commit dda4ac3bfb
2 changed files with 3 additions and 3 deletions

View File

@@ -4,14 +4,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt install g++
- run: sudo apt install clang
- run: chmod +x build.sh
- run: ./build.sh
run-and-compile-mac:
runs-on: mac-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt install g++
- run: brew install llvm
- run: chmod +x build.sh
- run: ./build.sh
run-and-compile-windows:

View File

@@ -1,3 +1,3 @@
#!/usr/bin/env bash
gcc -o bld build_main.cpp -g
clang -o bld build_main.cpp -g
./bld