2022-03-22 11:03:15 -04:00
|
|
|
name: Unit Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-18 10:17:41 -04:00
|
|
|
- "release/**"
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2023-01-24 05:39:26 -05:00
|
|
|
- "**/testdata/**"
|
2023-02-14 14:01:00 -05:00
|
|
|
- ".github/workflows/test-unittest.yml"
|
2022-03-22 11:03:15 -04:00
|
|
|
pull_request:
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
2023-01-31 05:21:32 -05:00
|
|
|
- "cli/internal/helm/**"
|
2022-09-03 11:47:47 -04:00
|
|
|
- "**.go"
|
2022-10-14 04:27:49 -04:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2023-01-24 05:39:26 -05:00
|
|
|
- "**/testdata/**"
|
2023-02-14 14:01:00 -05:00
|
|
|
- ".github/workflows/test-unittest.yml"
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
jobs:
|
2022-09-14 09:31:45 -04:00
|
|
|
test-linux:
|
2022-11-10 10:55:24 -05:00
|
|
|
runs-on: ubuntu-22.04
|
2022-03-22 11:03:15 -04:00
|
|
|
steps:
|
2022-07-20 04:48:01 -04:00
|
|
|
- name: Checkout
|
2023-05-05 08:42:20 -04:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
2022-12-19 09:21:28 -05:00
|
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-09-14 09:14:26 -04:00
|
|
|
- name: Setup Go environment
|
2023-04-04 05:06:30 -04:00
|
|
|
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
|
2022-03-22 11:03:15 -04:00
|
|
|
with:
|
2023-05-11 08:14:15 -04:00
|
|
|
go-version: "1.20.4"
|
2022-07-26 05:49:13 -04:00
|
|
|
cache: true
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
2022-10-19 10:36:24 -04:00
|
|
|
run: sudo apt-get update && sudo apt-get install -y 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
|
2023-05-19 09:36:54 -04:00
|
|
|
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
|
|
|
|
working-directory: build
|
2022-10-31 14:25:02 -04:00
|
|
|
env:
|
|
|
|
TMPDIR: ${{ runner.temp }}
|
2023-05-04 05:59:31 -04:00
|
|
|
run: bazelisk test //... --test_output=errors
|
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
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-05-05 08:42:20 -04:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2022-11-10 11:22:26 -05:00
|
|
|
with:
|
2022-12-19 09:21:28 -05:00
|
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
2022-09-14 09:31:45 -04:00
|
|
|
|
|
|
|
- name: Setup Go environment
|
2023-04-04 05:06:30 -04:00
|
|
|
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
|
2022-09-14 09:31:45 -04:00
|
|
|
with:
|
2023-05-11 08:14:15 -04:00
|
|
|
go-version: "1.20.4"
|
2022-09-14 09:31:45 -04:00
|
|
|
cache: true
|
|
|
|
|
2022-09-15 08:46:56 -04:00
|
|
|
- name: CLI Unit Tests
|
2023-05-04 05:59:31 -04:00
|
|
|
run: bazelisk test //cli/... --test_output=errors
|
2022-09-15 08:46:56 -04:00
|
|
|
|
|
|
|
- name: cdbg/debugd Unit Tests
|
2023-05-04 05:59:31 -04:00
|
|
|
run: bazelisk test //debugd/... --test_output=errors
|