mirror of
http://github.com/valkey-io/valkey
synced 2024-11-21 08:37:40 +00:00
b16e647679
[related to](https://github.com/valkey-io/valkey/issues/230) Adds workflows to build Valkey binaries and push to S3 to make it available to download from the website The Workflows can be triggered by pushing a release to the repo and the other option is manually by one of the Maintainers. Once the workflow triggers, it will generate a matrix of Jobs for the platforms we need to build from `utils/releasetools/build-config.json` and then the respective Jobs are triggered. These jobs make Valkey with respect to the platform binaries we want to release and would push to a private S3 bucket. --------- Signed-off-by: Roshan Khatri <rvkhatri@amazon.com>
28 lines
589 B
JSON
28 lines
589 B
JSON
{
|
|
"linux_targets": [
|
|
{
|
|
"arch": "x86_64",
|
|
"target": "ubuntu18.04",
|
|
"type": "deb",
|
|
"platform": "bionic"
|
|
},
|
|
{
|
|
"arch": "x86_64",
|
|
"target": "ubuntu20.04",
|
|
"type": "deb",
|
|
"platform": "focal"
|
|
},
|
|
{
|
|
"arch": "arm64",
|
|
"target": "ubuntu18.04",
|
|
"type": "deb",
|
|
"platform": "bionic"
|
|
},
|
|
{
|
|
"arch": "arm64",
|
|
"target": "ubuntu20.04",
|
|
"type": "deb",
|
|
"platform": "focal"
|
|
}
|
|
]
|
|
} |