2022-03-22 11:03:15 -04:00
|
|
|
name: Integration Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
|
2022-06-30 05:27:23 -04:00
|
|
|
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
jobs:
|
|
|
|
integration-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
GOPRIVATE: github.com/edgelesssys/*
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Go environment
|
|
|
|
uses: actions/setup-go@v2.1.4
|
|
|
|
with:
|
|
|
|
go-version: "1.18"
|
|
|
|
|
2022-04-07 10:39:21 -04:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: sudo apt-get update && sudo apt-get install -y pkg-config libcryptsetup12 libcryptsetup-dev
|
|
|
|
|
|
|
|
- name: Integration Test Coordinator
|
2022-04-21 09:32:03 -04:00
|
|
|
run: go test -v -tags integration ./test/
|
2022-04-07 10:39:21 -04:00
|
|
|
|
|
|
|
- name: Integration Test mount
|
|
|
|
run: |
|
|
|
|
go test -tags integration -c ./test/
|
|
|
|
sudo ./test.test -test.v -v 9
|
|
|
|
working-directory: mount
|
|
|
|
|
|
|
|
- name: Integration Test disk-mapper
|
|
|
|
run: |
|
|
|
|
go test -tags integration -c ./test/
|
|
|
|
sudo ./test.test -test.v
|
|
|
|
working-directory: state
|
2022-04-21 09:32:03 -04:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: coordinator-integrationtest-logs
|
|
|
|
path: /tmp/coordinator/logs/
|