2022-03-22 16:03:15 +01:00
|
|
|
name: Integration Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-18 16:17:41 +02:00
|
|
|
- "release/**"
|
2022-09-03 17:47:47 +02:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 10:27:49 +02:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2022-03-22 16:03:15 +01:00
|
|
|
pull_request:
|
2022-09-03 17:47:47 +02:00
|
|
|
paths:
|
|
|
|
- "**.go"
|
2022-10-14 10:27:49 +02:00
|
|
|
- "**/go.mod"
|
|
|
|
- "**/go.sum"
|
2022-03-22 16:03:15 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
integration-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
2022-06-30 13:26:21 +02:00
|
|
|
CTEST_OUTPUT_ON_FAILURE: True
|
2022-03-22 16:03:15 +01:00
|
|
|
steps:
|
2022-07-20 10:48:01 +02:00
|
|
|
- name: Checkout
|
2022-10-12 18:05:58 +02:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
2022-09-19 10:59:46 +02:00
|
|
|
with:
|
2022-10-19 10:32:22 +02:00
|
|
|
ref: ${{ github.head_ref }}
|
2022-09-14 15:14:26 +02:00
|
|
|
|
2022-03-22 16:03:15 +01:00
|
|
|
- name: Setup Go environment
|
2022-10-18 13:54:53 +02:00
|
|
|
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # tag=v3.3.1
|
2022-03-22 16:03:15 +01:00
|
|
|
with:
|
2022-11-02 11:17:29 +01:00
|
|
|
go-version: "1.19.3"
|
2022-07-26 11:49:13 +02:00
|
|
|
cache: true
|
2022-03-22 16:03:15 +01:00
|
|
|
|
2022-04-07 16:39:21 +02:00
|
|
|
- name: Install Dependencies
|
2022-10-19 16:36:24 +02:00
|
|
|
run: sudo apt-get update && sudo apt-get install -y libcryptsetup12 libcryptsetup-dev
|
2022-04-07 16:39:21 +02:00
|
|
|
|
2022-06-30 13:26:21 +02:00
|
|
|
- name: Create and populate build folder
|
|
|
|
run: mkdir build && cd build && cmake ..
|
2022-04-07 16:39:21 +02:00
|
|
|
|
2022-06-30 13:26:21 +02:00
|
|
|
# Runs all test targets starting with "integration-"
|
|
|
|
- name: Integration Tests
|
|
|
|
run: ctest -R integration-
|
2022-07-26 11:59:05 +02:00
|
|
|
working-directory: build
|