Skip to content
Closed

watci #4282

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ jobs:
env:
VERGEN_GIT_DESCRIBE: ${{ needs.compute-version.outputs.describe }}
SOURCE_DATE_EPOCH: ${{ needs.compute-version.outputs.timestamp }}
ACTIONS_CACHE_SERVICE_V2: 1

permissions:
contents: read
Expand All @@ -119,6 +120,20 @@ jobs:
- name: Setup sccache
uses: mozilla-actions/[email protected]

- run: |
env | while read -r line
do
var_name=$(echo "$line" | cut -d= -f1)

var_value=$(eval echo "\$$var_name")

if [ -z "$var_value" ]; then
echo "$var_name: EMPTY"
else
echo "$var_name: NOT EMPTY"
fi
done

- name: Install zig
uses: goto-bus-stop/setup-zig@v2
with:
Expand Down
Loading