This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Caleb Hailey
committed
Aug 12, 2019
1 parent
12b8efa
commit 4989fbe
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
description: "#{repo}" | ||
builds: | ||
- platform: "linux" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
|
||
- platform: "linux" | ||
arch: "386" | ||
asset_filename: "#{repo}_#{version}_linux_386.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == '386'" | ||
|
||
- platform: "linux" | ||
arch: "arm64" | ||
asset_filename: "#{repo}_#{version}_linux_arm64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'arm64'" | ||
|
||
- platform: "linux" | ||
arch: "armv7" | ||
asset_filename: "#{repo}_#{version}_linux_armv7.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'armv7'" | ||
|
||
- platform: "OSX" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_darwin_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'darwin'" | ||
- "entity.system.arch == 'amd64'" | ||
|
||
- platform: "OSX" | ||
arch: "386" | ||
asset_filename: "#{repo}_#{version}_darwin_386.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'darwin'" | ||
- "entity.system.arch == '386'" | ||
|
||
- platform: "Windows" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_windows_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'windows'" | ||
- "entity.system.arch == 'amd64'" |