Inital GitHub Actions (#15467)
* Inital GitHub Actions * Disable Windows for now * Disable tests for now
This commit is contained in:
parent
db8880eaec
commit
dce959d2af
1 changed files with 28 additions and 0 deletions
28
.github/workflows/ccpp.yml
vendored
Normal file
28
.github/workflows/ccpp.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
name: Radare2 CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
node_version: ['12']
|
||||
os: [ubuntu-latest, macOS-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: configure
|
||||
run: ./configure
|
||||
- name: make
|
||||
run: make
|
||||
# Disabled until NodeJS/r2pipe.js problems are solved
|
||||
#- name: make tests
|
||||
# run: make tests
|
||||
|
||||
Loading…
Reference in a new issue