mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
72e168e653
* 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
10 lines
147 B
Python
10 lines
147 B
Python
"""Platforms"""
|
|
|
|
def platforms():
|
|
return [
|
|
"darwin_amd64",
|
|
"darwin_arm64",
|
|
"linux_amd64",
|
|
"linux_arm64",
|
|
]
|