mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
101 lines
2.7 KiB
YAML
101 lines
2.7 KiB
YAML
name: test
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
release:
|
|
description: 'release'
|
|
required: true
|
|
type: string
|
|
client:
|
|
description: 'Client name'
|
|
required: true
|
|
type: string
|
|
jobs:
|
|
build:
|
|
name: Create cross-platform build
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-20.04, macos-latest, windows-latest]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Cache Go modules (Linux)
|
|
if: matrix.os == 'ubuntu-20.04'
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cache/go-build
|
|
~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Cache Go modules (macOS)
|
|
if: matrix.os == 'macos-latest'
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/Library/Caches/go-build
|
|
~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Cache Go modules (Windows)
|
|
if: matrix.os == 'windows-latest'
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~\AppData\Local\go-build
|
|
~\go\pkg\mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.18
|
|
|
|
- name: Install MSYS2 & libgit2 (Windows)
|
|
shell: cmd
|
|
run: .\build.bat all
|
|
if: matrix.os == 'windows-latest'
|
|
|
|
- name: Install libgit2 (Linux/macOS)
|
|
run: make libgit2
|
|
if: matrix.os != 'windows-latest'
|
|
|
|
- name: Test core pkg
|
|
run: go test -tags=static -v ./...
|
|
|
|
- name: Test httphandler pkg
|
|
run: cd httphandler && go test -tags=static -v ./...
|
|
|
|
- name: Build
|
|
env:
|
|
RELEASE: ${{ inputs.release }}
|
|
CLIENT: test
|
|
CGO_ENABLED: 1
|
|
run: python3 --version && python3 build.py
|
|
|
|
- name: Smoke Testing (Windows / MacOS)
|
|
env:
|
|
RELEASE: ${{ inputs.release }}
|
|
KUBESCAPE_SKIP_UPDATE_CHECK: "true"
|
|
run: python3 smoke_testing/init.py ${PWD}/build/${{ matrix.os }}/kubescape
|
|
if: matrix.os != 'ubuntu-20.04'
|
|
|
|
- name: Smoke Testing (Linux)
|
|
env:
|
|
RELEASE: ${{ inputs.release }}
|
|
KUBESCAPE_SKIP_UPDATE_CHECK: "true"
|
|
run: python3 smoke_testing/init.py ${PWD}/build/ubuntu-latest/kubescape
|
|
if: matrix.os == 'ubuntu-20.04'
|