Skip to content

Commit

Permalink
Create build-dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mixa84 committed Feb 27, 2024
1 parent 2d298f7 commit 5d3533b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Sequentia Core CI

on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches:
- master
- feature/*

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3 libevent-dev libboost-dev
wget -O - "https://apt.llvm.org/llvm.sh" | sudo bash -s 15
- name: Build
run: |
./autogen.sh && CC=clang-15 CXX=clang++-15 ./configure --disable-bench --without-gui --without-natpmp --without-miniupnpc && make clean && make -j $(nproc)

0 comments on commit 5d3533b

Please sign in to comment.