2022-03-22 11:03:15 -04:00
|
|
|
name: Integration Test
|
|
|
|
|
|
|
|
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"
|
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:
|
|
|
|
integration-test:
|
2022-11-10 10:55:24 -05:00
|
|
|
runs-on: ubuntu-22.04
|
2022-03-22 11:03:15 -04:00
|
|
|
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-12-14 08:55:14 -05:00
|
|
|
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
2022-10-19 04:32:22 -04:00
|
|
|
ref: ${{ github.head_ref }}
|
2022-09-14 09:14:26 -04:00
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
- name: Setup Go environment
|
2022-12-14 08:55:14 -05:00
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
2022-03-22 11:03:15 -04:00
|
|
|
with:
|
2022-12-07 08:27:43 -05:00
|
|
|
go-version: "1.19.4"
|
2022-07-26 05:49:13 -04:00
|
|
|
cache: true
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-04-07 10:39:21 -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
|
2022-04-07 10:39:21 -04:00
|
|
|
|
2022-06-30 07:26:21 -04:00
|
|
|
- name: Create and populate build folder
|
|
|
|
run: mkdir build && cd build && cmake ..
|
2022-04-07 10:39:21 -04:00
|
|
|
|
2022-06-30 07:26:21 -04:00
|
|
|
# Runs all test targets starting with "integration-"
|
|
|
|
- name: Integration Tests
|
|
|
|
run: ctest -R integration-
|
2022-07-26 05:59:05 -04:00
|
|
|
working-directory: build
|