mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-25 23:06:08 -05: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 87d39b06f7d81f9bcab40b2b517b2055216d727a. * 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",
|
|
]
|