-
Notifications
You must be signed in to change notification settings - Fork 47
53 lines (51 loc) · 1.59 KB
/
kryoptic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
name: Kryoptic
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: CI with kryoptic token
runs-on: ubuntu-22.04
strategy:
fail-fast: false
container: fedora:latest
steps:
- name: Install Dependencies
run: |
dnf -y install git meson cargo \
pkgconf-pkg-config openssl-devel openssl diffutils expect \
p11-kit-devel p11-kit-server gnutls-utils \
gcc g++ coreutils, perl-interpreter sed zlib-devel\
'perl(Module::Load::Conditional)' 'perl(File::Temp)' \
'perl(IPC::Cmd)' 'perl(FindBin)' 'perl(lib)' \
'perl(File::Compare)' 'perl(File::Copy)'
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Kryoptic
run: |
git clone https://github.com/latchset/kryoptic.git
cd kryoptic
git submodule update --init
cargo build
cargo test | tee testout.log 2>&1
grep -q "0 failed" testout.log
echo $KRYOPTIC=$PWD >> $GITHUB_ENV
- name: Setup
run: |
meson setup builddir
- name: Build and Test
run: |
meson compile -C builddir
meson test --num-processes 1 -C builddir
- uses: actions/upload-artifact@v3
if: failure()
with:
name: Test logs kryoptic
path: |
builddir/meson-logs/
builddir/tests/tmp.kryoptic/p11prov-debug.log
builddir/tests/tmp.kryoptic/testvars
builddir/tests/tmp.kryoptic/openssl.cnf