From 2c289d1d34ced864402ab456eeb2b94df0384e1f Mon Sep 17 00:00:00 2001 From: Sam Zaydel Date: Sun, 8 Oct 2023 09:34:14 -0700 Subject: [PATCH] Add support for gotestsum on illumos/amd64 --- .project/goreleaser.yml | 9 +++++++++ internal/filewatcher/term_illumos.go | 4 ++++ 2 files changed, 13 insertions(+) create mode 100644 internal/filewatcher/term_illumos.go diff --git a/.project/goreleaser.yml b/.project/goreleaser.yml index 3a4cf501..fccd9ab9 100644 --- a/.project/goreleaser.yml +++ b/.project/goreleaser.yml @@ -13,6 +13,7 @@ builds: - freebsd - windows - linux + - illumos goarch: - amd64 - arm64 @@ -36,6 +37,14 @@ builds: goarch: s390x - goos: windows goarch: ppc64le + - goos: illumos + goarch: arm + - goos: illumos + goarch: arm64 + - goos: illumos + goarch: s390x + - goos: illumos + goarch: ppc64le checksum: name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt' diff --git a/internal/filewatcher/term_illumos.go b/internal/filewatcher/term_illumos.go new file mode 100644 index 00000000..8b32af30 --- /dev/null +++ b/internal/filewatcher/term_illumos.go @@ -0,0 +1,4 @@ +package filewatcher + +const tcGet = 0x540d +const tcSet = 0x540e