From 916d08d8e4cbd48c78ca6cd9fbc8b09783881a9b Mon Sep 17 00:00:00 2001 From: "Dr. Ogg" Date: Wed, 25 Aug 2021 13:34:10 -0700 Subject: [PATCH] adding missing bonsai --- .bonsai.yml | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .bonsai.yml diff --git a/.bonsai.yml b/.bonsai.yml new file mode 100644 index 0000000..6e41794 --- /dev/null +++ b/.bonsai.yml @@ -0,0 +1,53 @@ +--- + 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: "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 == 'arm'" + - "entity.system.arm_version == 7" + + - platform: "linux" + arch: "armv6" + asset_filename: "#{repo}_#{version}_linux_armv6.tar.gz" + sha_filename: "#{repo}_#{version}_sha512-checksums.txt" + filter: + - "entity.system.os == 'linux'" + - "entity.system.arch == 'arm'" + - "entity.system.arm_version == 6" + + - 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: "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'" + \ No newline at end of file