Some checks failed
Native Verification / Build Docs (pull_request) Successful in 1m12s
Native Verification / Build App-Service Native (pull_request) Successful in 1m27s
Native Verification / Build Daemon Native (pull_request) Successful in 42s
Lint and Test Charts / lint-test (pull_request_target) Failing after 19s
Lint and Test Charts / test-version (pull_request_target) Successful in 0s
Lint and Test Charts / push-image (pull_request_target) Failing after 15s
Lint and Test Charts / upload-cli (pull_request_target) Failing after 1m15s
Lint and Test Charts / upload-daemon (pull_request_target) Failing after 1m12s
Lint and Test Charts / push-deps (pull_request_target) Has been skipped
Lint and Test Charts / push-deps-arm64 (pull_request_target) Has been skipped
Lint and Test Charts / push-image-arm64 (pull_request_target) Has been cancelled
Lint and Test Charts / upload-package (pull_request_target) Has been cancelled
Lint and Test Charts / install-test (pull_request_target) Has been cancelled
86 lines
1.9 KiB
YAML
86 lines
1.9 KiB
YAML
name: Native Verification
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release-*
|
|
paths:
|
|
- .gitea/workflows/native-verification.yaml
|
|
- daemon/**
|
|
- framework/app-service/**
|
|
- docs/**
|
|
- build/verify-native-in-container.sh
|
|
pull_request:
|
|
paths:
|
|
- .gitea/workflows/native-verification.yaml
|
|
- daemon/**
|
|
- framework/app-service/**
|
|
- docs/**
|
|
- build/verify-native-in-container.sh
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docs-build:
|
|
name: Build Docs
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: docs
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Install docs dependencies
|
|
run: npm ci
|
|
|
|
- name: Build docs
|
|
run: npm run build
|
|
|
|
appservice-native-build:
|
|
name: Build App-Service Native
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24.11'
|
|
|
|
- name: Install native dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y btrfs-progs libbtrfs-dev
|
|
|
|
- name: Build app-service
|
|
run: go build ./...
|
|
working-directory: framework/app-service
|
|
|
|
daemon-native-build:
|
|
name: Build Daemon Native
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24.11'
|
|
|
|
- name: Install native dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libudev-dev libpcap-dev
|
|
|
|
- name: Build daemon
|
|
run: go build ./cmd/...
|
|
working-directory: daemon
|