mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-20 13:42:14 +00:00
20 lines
457 B
Plaintext
20 lines
457 B
Plaintext
name: CI_on_ubuntu-16.04
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-16.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: installing system dependencies
|
|
run: sudo apt-get install -y build-essential pkg-config automake libncurses5-dev autotools-dev libparted-dev dmidecode
|
|
- name: creating autoconf files
|
|
run: ./init.sh
|
|
- name: configure
|
|
run: ./configure CFLAGS='-O0 -g -Wall -Wextra'
|
|
- name: make
|
|
run: make
|