Skip to content

Commit

Permalink
Started working on workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TechyGuy17 committed Dec 8, 2023
1 parent c2c7577 commit 268c96f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Compile binaries

# For production
# on:
# release:
# types: [published]


# For testing
on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: install deps
run: apt install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev
- name: build
run: mkdir build && cd build && cmake .. && make

0 comments on commit 268c96f

Please sign in to comment.