-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (31 loc) · 1.21 KB
/
pre-release.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
name: Workflow for pre-release packages
on:
push:
branches: [main]
jobs:
pre-release-package-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Go 1.21.x 🐹
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Grant execute permissions
run: chmod +x *
working-directory: ./scripts
- name: Run Unit tests
run: ./run-test.sh -u
working-directory: ./scripts
# Spin up integration environment (docker-compose or public hyper scaler infrastructure)
- name: Install apt dependencies for integration test
run: |
sudo apt-get update
sudo apt-get install -y openssl opensc softhsm libssl-dev libengine-pkcs11-openssl
- name: Run Integration tests
run: sudo ./run-test.sh -i
working-directory: ./scripts
# Run static code analysis on source code
# Run vulnerability scanner and generate SBOMs on third part dependencies
# Create build artifacts, e.g. Build docker image with pre-release tag for applications, scan docker image and push to container registry