Skip to content

Commit

Permalink
Added basic github workflows for building
Browse files Browse the repository at this point in the history
  • Loading branch information
codepr committed Mar 10, 2024
1 parent 46bda60 commit 893d649
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/roach.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: roach build

on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- name: make
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ LIB_OBJECTS = $(LIB_SOURCES:.c=.o)
LIB_PERSISTENCE = logdata

SERVER_SOURCES = src/main.c
# SERVER_SOURCES = src/*.c
SERVER_OBJECTS = $(SERVER_SOURCES:.c=.o)
SERVER_EXECUTABLE = server

Expand Down

0 comments on commit 893d649

Please sign in to comment.