Browse Source

fix #1833

Modernize the list of os-arch pairs that get official release builds;
add darwin/arm64 and openbsd/amd64, remove 386 and armv7, add plan9/amd64
for fun.
tags/v2.9.0-rc1
Shivaram Lingamneni 2 years ago
parent
commit
9ceac66b08
1 changed files with 15 additions and 6 deletions
  1. 15
    6
      .goreleaser.yml

+ 15
- 6
.goreleaser.yml View File

@@ -5,29 +5,37 @@ builds:
5 5
   - main: ergo.go
6 6
     binary: ergo
7 7
     goos:
8
-      - freebsd
8
+      - linux
9 9
       - windows
10 10
       - darwin
11
-      - linux
11
+      - freebsd
12
+      - openbsd
13
+      - plan9
12 14
     goarch:
13
-      - "386"
14 15
       - amd64
15 16
       - arm
16 17
       - arm64
17 18
     goarm:
18 19
       - 6
19
-      - 7
20 20
     ignore:
21 21
       - goos: windows
22 22
         goarch: arm
23
+      - goos: windows
24
+        goarch: arm64
23 25
       - goos: darwin
24 26
         goarch: arm
25
-      - goos: darwin
26
-        goarch: 386
27 27
       - goos: freebsd
28 28
         goarch: arm
29 29
       - goos: freebsd
30 30
         goarch: arm64
31
+      - goos: openbsd
32
+        goarch: arm
33
+      - goos: openbsd
34
+        goarch: arm64
35
+      - goos: plan9
36
+        goarch: arm
37
+      - goos: plan9
38
+        goarch: arm64
31 39
     flags:
32 40
       - -trimpath
33 41
 
@@ -44,6 +52,7 @@ archives:
44 52
     files:
45 53
       - README
46 54
       - CHANGELOG.md
55
+      - LICENSE
47 56
       - ergo.motd
48 57
       - default.yaml
49 58
       - traditional.yaml

Loading…
Cancel
Save