mirror of https://github.com/jetkvm/kvm.git
71 lines
2.4 KiB
YAML
71 lines
2.4 KiB
YAML
name: build image
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- main
|
|
workflow_dispatch:
|
|
pull_request_review:
|
|
types: [submitted]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Build
|
|
if: github.event_name != 'pull_request_review' || github.event.review.state == 'approved'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
- name: Set up docker image context
|
|
run: |
|
|
./scripts/ci_helper.sh prepare
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Build docker image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: ${{ env.DOCKER_BUILD_CONTEXT_DIR }}
|
|
file: ${{ env.DOCKER_BUILD_CONTEXT_DIR }}/Dockerfile.build
|
|
tags: ${{ env.DOCKER_BUILD_TAG }}
|
|
push: false
|
|
load: true
|
|
- name: Set up Cmake cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: internal/native/cgo/build
|
|
key: jetkvm-cgo-${{ hashFiles('internal/native/cgo/**/*.c', 'internal/native/cgo/**/*.h', 'internal/native/cgo/**/*.patch', 'internal/native/cgo/**/*.txt', 'internal/native/cgo/**/*.sh', '!internal/native/cgo/build/**') }}
|
|
restore-keys: |
|
|
jetkvm-cgo-${{ hashFiles('internal/native/cgo/**/*.c', 'internal/native/cgo/**/*.h', 'internal/native/cgo/**/*.patch', 'internal/native/cgo/**/*.txt', 'internal/native/cgo/**/*.sh', '!internal/native/cgo/build/**') }}
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: "22"
|
|
cache: "npm"
|
|
cache-dependency-path: "**/package-lock.json"
|
|
- name: Set up Golang
|
|
uses: actions/setup-go@v6.0.0
|
|
with:
|
|
go-version: "^1.25.1"
|
|
- name: Build frontend
|
|
run: |
|
|
make frontend
|
|
- name: Build application inside Docker container
|
|
run: |
|
|
./scripts/ci_helper.sh make build_dev
|
|
- name: Run tests
|
|
run: |
|
|
go test ./... -json > testreport.json
|
|
- name: Make test cases
|
|
run: |
|
|
./scripts/ci_helper.sh make build_dev_test
|
|
- name: Golang Test Report
|
|
uses: becheran/go-testreport@v0.3.2
|
|
with:
|
|
input: "testreport.json"
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: jetkvm-app
|
|
path: |
|
|
bin/jetkvm_app
|
|
device-tests.tar.gz |