mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-01 22:06:06 -04:00

* switch to darwin compatible shasum
* add bazel rule
* update shellscript for in-place updates
* Revert "update shellscript for in-place updates"
This reverts commit 87d39b06f7
.
* add version tool freshness check
* remove pseudo-version file
* revert to `sha256sum`
* fix workflow indentation
9 lines
147 B
Python
9 lines
147 B
Python
"""Platforms"""
|
|
|
|
def platforms():
|
|
return [
|
|
"darwin_amd64",
|
|
"darwin_arm64",
|
|
"linux_amd64",
|
|
"linux_arm64",
|
|
]
|