Skip to content

Commit

Permalink
github: Add main workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrannanj committed Dec 10, 2024
1 parent 40c41ea commit ae3476d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Compile udpgame
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install build dependencies
run: sudo apt-get install -qq libglew-dev libsdl2-image-dev libglm-dev
libprotobuf-dev protobuf-compiler libfreetype-dev libsdl2-dev

- name: Build udpgame
run: make -j $(getconf _NPROCESSORS_ONLN)

0 comments on commit ae3476d

Please sign in to comment.