Skip to content

Commit

Permalink
Merge pull request #14 from apaskulin/bonsai
Browse files Browse the repository at this point in the history
Update filter syntax to use single quotes around os and arch
  • Loading branch information
portertech authored Mar 7, 2019
2 parents fbfcb8d + e423158 commit 3cd4534
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .bonsai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,53 +6,53 @@ builds:
asset_filename: "#{repo}_#{version}_linux_amd64.tar.gz"
sha_filename: "#{repo}_#{version}_sha512-checksums.txt"
filter:
- "entity.system.os == linux"
- "entity.system.arch == amd64"
- "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"
- "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"
- "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"
- "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"
- "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"
- "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"
- "entity.system.os == 'windows'"
- "entity.system.arch == 'amd64'"

0 comments on commit 3cd4534

Please sign in to comment.