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

Loading…
Cancel
Save