constellation/.github/workflows/test-unittest.yml

70 lines
1.9 KiB
YAML
Raw Normal View History

name: Unit Tests
on:
workflow_dispatch:
push:
branches:
- main
- "release/**"
2022-09-03 11:47:47 -04:00
paths:
- "**.go"
- "**/go.mod"
- "**/go.sum"
- "**/testdata/**"
- ".github/workflows/test-unittest.yml"
pull_request:
2022-09-03 11:47:47 -04:00
paths:
- "cli/internal/helm/**"
2022-09-03 11:47:47 -04:00
- "**.go"
- "**/go.mod"
- "**/go.sum"
- "**/testdata/**"
- ".github/workflows/test-unittest.yml"
jobs:
2022-09-14 09:31:45 -04:00
test-linux:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
with:
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
2022-09-14 09:14:26 -04:00
- name: Setup Go environment
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
with:
2023-05-11 08:14:15 -04:00
go-version: "1.20.4"
cache: true
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libcryptsetup12 libcryptsetup-dev libvirt-dev
- 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
- 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
test-darwin:
2022-09-14 09:31:45 -04:00
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
with:
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
2022-09-14 09:31:45 -04:00
- name: Setup Go environment
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
- name: CLI Unit Tests
2023-05-04 05:59:31 -04:00
run: bazelisk test //cli/... --test_output=errors
- name: cdbg/debugd Unit Tests
2023-05-04 05:59:31 -04:00
run: bazelisk test //debugd/... --test_output=errors