github.com/naemono/pop@v4.13.1+incompatible/.goreleaser.yml.plush (about)

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