Skip to content

Commit

Permalink
Add depends gihtub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCharlatan committed Jan 14, 2020
1 parent b4e1dc8 commit 83ac4ae
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: continuous-integration/gh-actions/cli

on: [push, pull_request]

jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: update apt
run: sudo apt update
- name: install monero dependencies
run: sudo apt -y build-essential libtool cmake autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache
- name: build
run: make depends target=x86_64-linux-gnu -j 3

0 comments on commit 83ac4ae

Please sign in to comment.