Compare commits

3 Commits

Author SHA1 Message Date
e83b4be8c5 ci: Add default build test 2026-04-03 13:53:43 +02:00
12a95a3efe gitignore: Adding windows build directory 2026-02-11 14:54:23 +01:00
992f8a3e3a project: create the windows toolchain
Some of the code is still linux only
2026-02-11 14:53:17 +01:00
2 changed files with 4 additions and 7 deletions

View File

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

View File

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