mirror of
https://github.com/blacktop/ipsw.git
synced 2026-05-08 12:22:26 +00:00
105 lines
2.4 KiB
YAML
105 lines
2.4 KiB
YAML
version: 2
|
|
|
|
builds:
|
|
- id: linux_build
|
|
main: ./cmd/ipsw
|
|
binary: ipsw
|
|
env:
|
|
- CGO_ENABLED=1
|
|
- >-
|
|
{{- if eq .Arch "amd64" }}CC=zig cc -target x86_64-linux-musl
|
|
{{- else if eq .Arch "arm64" }}CC=zig cc -target aarch64-linux-musl
|
|
{{- end }}
|
|
- >-
|
|
{{- if eq .Arch "amd64" }}CXX=zig cc -target x86_64-linux-musl
|
|
{{- else if eq .Arch "arm64" }}CXX=zig cc -target aarch64-linux-musl
|
|
{{- end }}
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
goamd64:
|
|
- v1
|
|
goarm64:
|
|
- v8.0
|
|
ignore:
|
|
- goos: linux
|
|
goarch: 386
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
- -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppVersion={{.Version}}
|
|
- -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppBuildCommit={{.Commit}}
|
|
|
|
- id: windows_build
|
|
main: ./cmd/ipsw
|
|
binary: ipsw
|
|
env:
|
|
- CGO_ENABLED=1
|
|
- >-
|
|
{{- if eq .Arch "amd64" }}CC=zig cc -target x86_64-windows-gnu
|
|
{{- else if eq .Arch "arm64" }}CC=zig cc -target aarch64-windows-gnu
|
|
{{- end }}
|
|
- >-
|
|
{{- if eq .Arch "amd64" }}CXX=zig cc -target x86_64-windows-gnu
|
|
{{- else if eq .Arch "arm64" }}CXX=zig cc -target aarch64-windows-gnu
|
|
{{- end }}
|
|
goos:
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
goamd64:
|
|
- v1
|
|
goarm64:
|
|
- v8.0
|
|
ignore:
|
|
- goos: windows
|
|
goarch: 386
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
- -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppVersion={{.Version}}
|
|
- -X github.com/blacktop/ipsw/cmd/ipsw/cmd.AppBuildCommit={{.Commit}}
|
|
|
|
archives:
|
|
- id: linux_archive
|
|
builds:
|
|
- linux_build
|
|
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
|
|
replacements:
|
|
amd64: x86_64
|
|
files:
|
|
- README.md
|
|
- LICENSE
|
|
- completions/*
|
|
- manpages/*
|
|
wrap_in_directory: true
|
|
|
|
- id: windows_archive
|
|
builds:
|
|
- windows_build
|
|
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
|
|
replacements:
|
|
amd64: x86_64
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
files:
|
|
- README.md
|
|
- LICENSE
|
|
- completions/*
|
|
- manpages/*
|
|
wrap_in_directory: true
|
|
|
|
checksum:
|
|
name_template: "checksums.cross.txt"
|
|
|
|
sboms:
|
|
- artifacts: archive
|