mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-20 22:15:41 +00:00
1. Started constructing the code we will use to access and write to /etc/nwipe/nwipe.conf. The initial use of the nwipe.conf file will be to hold information such as organisation and technician details that will be used on the PDF report certificate. We are using the libconfig library enable us to read and write the conf file. libconfig is very well documented so editing the conf file manually should be pretty straight forward. Nwipe will build a basic conf file to give the user an idea how it should be edited. 2. Updated the README.md, showing the libconfig-dev, libconfig++-dev needs to be installed. 3. Added some information about the use of hdparm to detect hidden sectors and also noted that as from v0.35 nwipe will detect hidden sectors, and may well have an extra method to expose those hidden# sectors by restoring the DCO.
22 lines
592 B
YAML
22 lines
592 B
YAML
name: ci_ubuntu_latest
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: updating available system dependencies
|
|
run: sudo apt-get update
|
|
- name: installing system dependencies
|
|
run: sudo apt-get install -y build-essential pkg-config automake libncurses5-dev autotools-dev libparted-dev libconfig-dev libconfig++-dev dmidecode
|
|
- name: creating autoconf files
|
|
run: ./autogen.sh
|
|
- name: configuring
|
|
run: ./configure CFLAGS='-O0 -g -Wall -Wextra'
|
|
- name: compiling
|
|
run: make
|