mirror of
https://github.com/safing/portmaster
synced 2025-04-18 01:49:09 +00:00
migrate build system to earthly: supports building core, start and angular for all supported platforms. tauri still missing
This commit is contained in:
parent
8579430db9
commit
66381baa1a
5 changed files with 206 additions and 8 deletions
10
.earthlyignore
Normal file
10
.earthlyignore
Normal file
|
@ -0,0 +1,10 @@
|
|||
go.work
|
||||
go.work.sum
|
||||
|
||||
dist/
|
||||
node_modules/
|
||||
|
||||
desktop/angular/node_modules
|
||||
desktop/angular/dist
|
||||
desktop/angular/dist-lib
|
||||
desktop/angular/dist-extension
|
177
Earthfile
Normal file
177
Earthfile
Normal file
|
@ -0,0 +1,177 @@
|
|||
VERSION --arg-scope-and-set 0.8
|
||||
|
||||
ARG --global go_version = 1.21
|
||||
ARG --global distro = alpine3.18
|
||||
ARG --global node_version = 18
|
||||
ARG --global outputDir = "./dist"
|
||||
|
||||
go-deps:
|
||||
FROM golang:${go_version}-${distro}
|
||||
WORKDIR /go-workdir
|
||||
|
||||
# These cache dirs will be used in later test and build targets
|
||||
# to persist cached go packages.
|
||||
#
|
||||
# NOTE: cache only gets persisted on successful builds. A test
|
||||
# failure will prevent the go cache from being persisted.
|
||||
ENV GOCACHE = "/.go-cache"
|
||||
ENV GOMODCACHE = "/.go-mod-cache"
|
||||
|
||||
# Copying only go.mod and go.sum means that the cache for this
|
||||
# target will only be busted when go.mod/go.sum change. This
|
||||
# means that we can cache the results of 'go mod download'.
|
||||
COPY go.mod .
|
||||
COPY go.sum .
|
||||
RUN go mod download
|
||||
|
||||
|
||||
go-base:
|
||||
FROM +go-deps
|
||||
|
||||
# Only copy go-code related files to improve caching.
|
||||
# (i.e. do not rebuild go if only the angular app changed)
|
||||
COPY cmds ./cmds
|
||||
COPY runtime ./runtime
|
||||
COPY service ./service
|
||||
COPY spn ./spn
|
||||
|
||||
# mod-tidy runs 'go mod tidy', saving go.mod and go.sum locally.
|
||||
mod-tidy:
|
||||
FROM +go-base
|
||||
|
||||
RUN go mod tidy
|
||||
SAVE ARTIFACT go.mod AS LOCAL go.mod
|
||||
SAVE ARTIFACT --if-exists go.sum AS LOCAL go.sum
|
||||
|
||||
# build-go runs 'go build ./cmds/...', saving artifacts locally.
|
||||
# If --CMDS is not set, it defaults to building portmaster-start, portmaster-core and hub
|
||||
build-go:
|
||||
FROM +go-base
|
||||
|
||||
# Arguments for cross-compilation.
|
||||
ARG GOOS=linux
|
||||
ARG GOARCH=amd64
|
||||
ARG GOARM
|
||||
ARG CMDS=portmaster-start portmaster-core hub
|
||||
|
||||
CACHE --sharing shared "$GOCACHE"
|
||||
CACHE --sharing shared "$GOMODCACHE"
|
||||
|
||||
RUN mkdir /tmp/build
|
||||
ENV CGO_ENABLED = "0"
|
||||
|
||||
IF [ "${CMDS}" = "" ]
|
||||
LET CMDS=$(ls -1 "./cmds/")
|
||||
END
|
||||
|
||||
# Build all go binaries from the specified in CMDS
|
||||
FOR bin IN $CMDS
|
||||
RUN go build -o "/tmp/build/" ./cmds/${bin}
|
||||
END
|
||||
|
||||
LET NAME = ""
|
||||
|
||||
FOR bin IN $(ls -1 "/tmp/build/")
|
||||
SET NAME = "${outputDir}/${GOOS}_${GOARCH}/${bin}"
|
||||
IF [ "${GOARM}" != "" ]
|
||||
SET NAME = "${outputDir}/${GOOS}_${GOARCH}v${GOARM}/${bin}"
|
||||
END
|
||||
|
||||
SAVE ARTIFACT "/tmp/build/${bin}" AS LOCAL "${NAME}"
|
||||
END
|
||||
|
||||
# Test one or more go packages.
|
||||
# Run `earthly +test-go` to test all packages
|
||||
# Run `earthly +test-go --PKG="service/firewall"` to only test a specific package.
|
||||
# Run `earthly +test-go --TESTFLAGS="-short"` to add custom flags to go test (-short in this case)
|
||||
test-go:
|
||||
FROM +go-base
|
||||
|
||||
ARG GOOS=linux
|
||||
ARG GOARCH=amd64
|
||||
ARG GOARM
|
||||
ARG TESTFLAGS
|
||||
ARG PKG="..."
|
||||
|
||||
CACHE --sharing shared "$GOCACHE"
|
||||
CACHE --sharing shared "$GOMODCACHE"
|
||||
|
||||
FOR pkg IN $(go list -e "./${PKG}")
|
||||
RUN go test -cover ${TESTFLAGS} ${pkg}
|
||||
END
|
||||
|
||||
test-go-all-platforms:
|
||||
# Linux platforms:
|
||||
BUILD +test-go --GOARCH=amd64 --GOOS=linux
|
||||
BUILD +test-go --GOARCH=arm64 --GOOS=linux
|
||||
BUILD +test-go --GOARCH=arm --GOOS=linux --GOARM=5
|
||||
BUILD +test-go --GOARCH=arm --GOOS=linux --GOARM=6
|
||||
BUILD +test-go --GOARCH=arm --GOOS=linux --GOARM=7
|
||||
|
||||
# Windows platforms:
|
||||
BUILD +test-go --GOARCH=amd64 --GOOS=windows
|
||||
BUILD +test-go --GOARCH=arm64 --GOOS=windows
|
||||
|
||||
# Builds portmaster-start and portmaster-core for all supported platforms
|
||||
build-go-release:
|
||||
# Linux platforms:
|
||||
BUILD +build-go --GOARCH=amd64 --GOOS=linux
|
||||
BUILD +build-go --GOARCH=arm64 --GOOS=linux
|
||||
BUILD +build-go --GOARCH=arm --GOOS=linux --GOARM=5
|
||||
BUILD +build-go --GOARCH=arm --GOOS=linux --GOARM=6
|
||||
BUILD +build-go --GOARCH=arm --GOOS=linux --GOARM=7
|
||||
|
||||
# Windows platforms:
|
||||
BUILD +build-go --GOARCH=amd64 --GOOS=windows
|
||||
BUILD +build-go --GOARCH=arm64 --GOOS=windows
|
||||
|
||||
# Builds all binaries from the cmds/ folder for linux/windows AMD64
|
||||
# Most utility binaries are never needed on other platforms.
|
||||
build-utils:
|
||||
BUILD +build-go --CMDS="" --GOARCH=amd64 --GOOS=linux
|
||||
BUILD +build-go --CMDS="" --GOARCH=amd64 --GOOS=windows
|
||||
|
||||
# Prepares the angular project
|
||||
angular-deps:
|
||||
FROM node:${node_version}
|
||||
WORKDIR /app/ui
|
||||
|
||||
RUN apt update && apt install zip
|
||||
|
||||
CACHE --sharing shared "/app/ui/node_modules"
|
||||
|
||||
COPY desktop/angular/package.json .
|
||||
COPY desktop/angular/package-lock.json .
|
||||
RUN npm install
|
||||
|
||||
|
||||
angular-base:
|
||||
FROM +angular-deps
|
||||
|
||||
COPY desktop/angular/ .
|
||||
|
||||
# Build the Portmaster UI (angular) in release mode
|
||||
angular-release:
|
||||
FROM +angular-base
|
||||
|
||||
CACHE --sharing shared "/app/ui/node_modules"
|
||||
|
||||
RUN npm run build
|
||||
RUN zip -r ./angular.zip ./dist
|
||||
SAVE ARTIFACT "./angular.zip" AS LOCAL ${outputDir}/angular.zip
|
||||
SAVE ARTIFACT "./dist" AS LOCAL ${outputDir}/angular
|
||||
|
||||
|
||||
# Build the Portmaster UI (angular) in dev mode
|
||||
angular-dev:
|
||||
FROM +angular-base
|
||||
|
||||
CACHE --sharing shared "/app/ui/node_modules"
|
||||
|
||||
RUN npm run build:dev
|
||||
SAVE ARTIFACT ./dist AS LOCAL ${outputDir}/angular
|
||||
|
||||
|
||||
release:
|
||||
BUILD +build-go-release
|
||||
BUILD +angular-release
|
|
@ -4,6 +4,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"flag"
|
||||
"fmt"
|
||||
"os"
|
||||
|
@ -75,7 +76,7 @@ func main() {
|
|||
log.Infof("using .sys at %s", sysPath)
|
||||
|
||||
// init
|
||||
err = windowskext.Init(dllPath, sysPath)
|
||||
err = windowskext.Init(sysPath)
|
||||
if err != nil {
|
||||
log.Criticalf("failed to init kext: %s", err)
|
||||
return
|
||||
|
@ -89,7 +90,7 @@ func main() {
|
|||
}
|
||||
|
||||
packets = make(chan packet.Packet, 1000)
|
||||
go windowskext.Handler(packets)
|
||||
go windowskext.Handler(context.TODO(), packets)
|
||||
go handlePackets()
|
||||
|
||||
// catch interrupt for clean shutdown
|
||||
|
@ -135,12 +136,8 @@ func handlePackets() {
|
|||
handledPackets++
|
||||
|
||||
if getPayload {
|
||||
data, err := pkt.GetPayload()
|
||||
if err != nil {
|
||||
log.Errorf("failed to get payload: %s", err)
|
||||
} else {
|
||||
log.Infof("payload is: %x", data)
|
||||
}
|
||||
data := pkt.Payload()
|
||||
log.Infof("payload is: %x", data)
|
||||
}
|
||||
|
||||
// reroute dns requests to nameserver
|
||||
|
|
10
cmds/winkext-test/main_linux.go
Normal file
10
cmds/winkext-test/main_linux.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package main
|
||||
|
||||
import "log"
|
||||
|
||||
func main() {
|
||||
log.Fatalf("winkext-test not supported on linux")
|
||||
}
|
4
desktop/angular/.gitignore
vendored
Normal file
4
desktop/angular/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
node_modules
|
||||
dist
|
||||
dist-extension
|
||||
dist-lib
|
Loading…
Add table
Reference in a new issue