2022-03-22 11:03:15 -04:00
|
|
|
name: Unit Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2022-03-22 11:03:15 -04:00
|
|
|
pull_request:
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
jobs:
|
2022-09-14 09:31:45 -04:00
|
|
|
test-linux:
|
2022-03-22 11:03:15 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
2022-06-30 07:26:21 -04:00
|
|
|
CTEST_OUTPUT_ON_FAILURE: True
|
2022-03-22 11:03:15 -04:00
|
|
|
steps:
|
2022-07-20 04:48:01 -04:00
|
|
|
- name: Checkout
|
2022-10-12 12:05:58 -04:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-09-14 09:14:26 -04:00
|
|
|
- name: Setup Go environment
|
2022-10-18 07:54:53 -04:00
|
|
|
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # tag=v3.3.1
|
2022-03-22 11:03:15 -04:00
|
|
|
with:
|
2022-10-06 13:31:12 -04:00
|
|
|
go-version: "1.19.2"
|
2022-07-26 05:49:13 -04:00
|
|
|
cache: true
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
2022-09-14 09:14:26 -04:00
|
|
|
run: sudo apt-get update && sudo apt-get install -y pkg-config libcryptsetup12 libcryptsetup-dev libvirt-dev
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-06-30 07:26:21 -04:00
|
|
|
- name: Create and populate build folder
|
|
|
|
run: mkdir build && cd build && cmake ..
|
2022-05-31 12:33:27 -04:00
|
|
|
|
2022-06-30 07:26:21 -04:00
|
|
|
- name: Unit Tests
|
2022-09-14 09:31:45 -04:00
|
|
|
run: ctest -R unit
|
2022-06-30 07:26:21 -04:00
|
|
|
working-directory: build
|
2022-09-14 09:31:45 -04:00
|
|
|
|
2022-09-15 08:46:56 -04:00
|
|
|
test-darwin:
|
2022-09-14 09:31:45 -04:00
|
|
|
runs-on: macos-12
|
|
|
|
env:
|
|
|
|
CTEST_OUTPUT_ON_FAILURE: True
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-10-12 12:05:58 -04:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
2022-09-14 09:31:45 -04:00
|
|
|
|
|
|
|
- name: Setup Go environment
|
2022-10-18 07:54:53 -04:00
|
|
|
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # tag=v3.3.1
|
2022-09-14 09:31:45 -04:00
|
|
|
with:
|
2022-10-06 13:31:12 -04:00
|
|
|
go-version: "1.19.2"
|
2022-09-14 09:31:45 -04:00
|
|
|
cache: true
|
|
|
|
|
2022-09-15 08:46:56 -04:00
|
|
|
- name: CLI Unit Tests
|
2022-09-14 09:31:45 -04:00
|
|
|
run: go test -race -count=3 ./cli/...
|
2022-09-15 08:46:56 -04:00
|
|
|
|
|
|
|
- name: cdbg/debugd Unit Tests
|
|
|
|
run: go test -race -count=3 ./debugd/...
|