github.com/solongordon/pop@v4.10.0+incompatible/.goreleaser.yml.plush (about)

     1  builds:
     2  - binary: soda
     3    main: soda/main.go
     4    goos:
     5      - darwin
     6    goarch:
     7      - amd64
     8    env:
     9      - CGO_ENABLED=1
    10      - CC=o64-clang
    11      - CXX=o64-clang++
    12    flags:
    13      - -tags
    14      - sqlite
    15  
    16  - binary: soda
    17    main: soda/main.go
    18    env:
    19      - CGO_ENABLED=1
    20    flags:
    21      - -tags
    22      - sqlite
    23    goos:
    24      - linux
    25    goarch:
    26      - amd64
    27      - 386
    28  
    29  - binary: soda
    30    main: soda/main.go
    31    ldflags:
    32      - "-extldflags '-static'"
    33    env:
    34      - CGO_ENABLED=1
    35      - CC=i686-w64-mingw32-gcc
    36      - CXX=i686-w64-mingw32-g++
    37    flags:
    38      - -tags
    39      - sqlite
    40    goos:
    41      - windows
    42    goarch:
    43      - 386
    44  
    45  - binary: soda
    46    main: soda/main.go
    47    ldflags:
    48      - "-extldflags '-static'"
    49    env:
    50      - CGO_ENABLED=1
    51      - CC=x86_64-w64-mingw32-gcc
    52      - CXX=x86_64-w64-mingw32-g++
    53    flags:
    54      - -tags
    55      - sqlite
    56    goos:
    57      - windows
    58    goarch:
    59      - amd64
    60  
    61  archive:
    62    format: tar.gz
    63    format_overrides:
    64      - goos: windows
    65        format: zip
    66  
    67  checksum:
    68    name_template: 'checksums.txt'
    69  
    70  snapshot:
    71    name_template: "{{ .Tag }}-next"
    72  
    73  changelog:
    74    sort: asc
    75    filters:
    76      exclude:
    77        - '^docs:'
    78        - '^test:'
    79  <%= if (brew) { %>
    80  brew:
    81    github:
    82      owner: gobuffalo
    83      name: homebrew-tap
    84  <% } %>