Skip to content

Commit

Permalink
build client in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
atar13 committed Apr 11, 2024
1 parent d22b088 commit 71dfe5c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-client.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build Client

on:
push:
branches:
- dev
pull_request:

jobs:
windows:
name: Build on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Create build dir
run: mkdir -p build
- name: Run CMake
run: cd build && cmake ..
- name: Build
run: make client
linux:
name: Build on Linux (Ubuntu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create build dir
run: mkdir -p build
- name: Run CMake
run: cd build && cmake ..
- name: Build
run: make client

0 comments on commit 71dfe5c

Please sign in to comment.