-
Notifications
You must be signed in to change notification settings - Fork 115
37 lines (28 loc) · 774 Bytes
/
Copy pathmakefile.yml
File metadata and controls
37 lines (28 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Compile net-tools
permissions: {} # overwritten below
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Compile with make
permissions: {}
# contents: read
# pull-requests: write
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: install-dev
run: sudo apt-get install libbluetooth-dev libselinux1-dev gettext
- name: configure
run: yes "" | make config
- name: compile
run: make distcheck