Compare commits

9 Commits

Author SHA1 Message Date
2427601120 Update README.md
Some checks failed
Gol CI / build (push) Has been cancelled
2026-04-03 12:23:37 +00:00
c747dab1fc Merge pull request 'Improving CI usage' (#7) from improvin-ci into main
All checks were successful
Gol CI / build (push) Successful in 2m36s
Reviewed-on: #7
2026-04-03 12:16:54 +00:00
4c33da0ecd Merge branch 'main' into improvin-ci
All checks were successful
Gol CI / build (pull_request) Successful in 2m30s
2026-04-03 12:16:31 +00:00
f0284e7975 ci: Run on MR
All checks were successful
Gol CI / build (pull_request) Successful in 2m30s
This also adds the new dependencies
2026-04-03 14:12:23 +02:00
8f62ee83a6 Merge pull request 'Windows compatibility and CI integration' (#6) from lju/windows-compat into main
Some checks failed
Gol CI / build (push) Failing after 1m22s
Reviewed-on: #6
2026-04-03 11:57:27 +00:00
d16319084b ci: Add default build test 2026-04-03 13:56:32 +02:00
46c9bee008 gitignore: Adding windows build directory 2026-04-03 13:56:32 +02:00
1594e663eb project: create the windows toolchain
Some of the code is still linux only
2026-04-03 13:56:32 +02:00
c35097b3d3 Merge pull request 'grid: add a guide grid' (#5) from lju/adding-grid into main
Reviewed-on: #5
2026-01-15 08:14:32 +00:00
2 changed files with 7 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
name: Gol CI
# Run on the merge of a pull request to the main branch
on:
pull_request:
branches: [main]
push:
branches: [main]
@@ -9,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cmake
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake
sudo apt-get install -y cmake libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libgl1-mesa-dev
- name: Build and test
run: |
mkdir build

View File

@@ -15,4 +15,4 @@ cmake ..
make
```
> As for now I will not make this program Windows compatible.
> The windows version might exist one day