0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-05-05 17:50:18 +00:00
netdata_netdata/.github/scripts/get-static-cache-key.sh
Austin S. Hemmelgarn cf199ac034
Update workflows to use $GITHUB_OUTPUT instead of ::set-output:: ()
* Update workflows to use $GITHUB_OUTPUT instead of ::set-output::

* Fix python code.

* Fix handling of python-based build matrix generation.
2022-12-02 10:17:41 -05:00

15 lines
533 B
Bash
Executable file

#!/bin/sh
arch="${1}"
platform="$(packaging/makeself/uname2platform.sh "${arch}")"
docker pull --platform "${platform}" netdata/static-builder
# shellcheck disable=SC2046
cat $(find packaging/makeself/jobs -type f ! -regex '.*\(netdata\|-makeself\).*') > /tmp/static-cache-key-data
docker run -it --rm --platform "${platform}" netdata/static-builder sh -c 'apk list -I 2>/dev/null' >> /tmp/static-cache-key-data
h="$(sha256sum /tmp/static-cache-key-data | cut -f 1 -d ' ')"
echo "key=static-${arch}-${h}" >> "${GITHUB_OUTPUT}"