mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 15:15:28 +00:00
Create build.yml
This commit is contained in:
committed by
GitHub
parent
dc065add0b
commit
8e3de8a07a
19
.github/workflows/build.yml
vendored
Normal file
19
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: install packages
|
||||
run: libgnutls28-dev nettle-dev
|
||||
- name: cmake
|
||||
run: cmake -B build -DUSE_LIBJUICE=1 -DUSE_GNUTLS=1
|
||||
- name: make
|
||||
run: (cd build; make)
|
||||
- name: tests
|
||||
run: ./build/tests
|
||||
|
Reference in New Issue
Block a user