Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
54 lines
851 B
YAML
54 lines
851 B
YAML
# SPDX-FileCopyrightText: 2024 Shun Sakai
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
version: 2
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
- asciidoctor -b manpage docs/man/man1/glzip.1.adoc
|
|
|
|
builds:
|
|
- main: ./cmd/glzip
|
|
binary: glzip
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- darwin
|
|
- freebsd
|
|
- linux
|
|
- openbsd
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
|
|
archives:
|
|
- formats: tar.zst
|
|
# use zip for windows archives
|
|
format_overrides:
|
|
- goos: windows
|
|
formats: zip
|
|
files:
|
|
- AUTHORS.adoc
|
|
- CHANGELOG.adoc
|
|
- CONTRIBUTING.adoc
|
|
- docs/man/man1/glzip.1
|
|
- LICENSES/*
|
|
- README.md
|
|
|
|
checksum:
|
|
algorithm: sha3-512
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|