Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing paseon config for CI jobs #3071

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
options:
- litentry
- rococo
- paseo
ref:
description: The commit SHA or tag for checking out code
default: ""
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ on:
options:
- none
- rococo
- paseo
- litentry

env:
Expand Down Expand Up @@ -76,6 +77,7 @@ jobs:
matrix:
chain:
- rococo
- paseo
- litentry
name: ${{ matrix.chain }}
steps:
Expand Down
6 changes: 3 additions & 3 deletions scripts/generate-release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fi

if is_runtime_release; then
echo "## Parachain runtime" >> "$1"
for CHAIN in rococo litentry; do
for CHAIN in rococo litentry paseo; do
SRTOOL_DIGEST_FILE=$CHAIN-parachain-runtime/$CHAIN-parachain-srtool-digest.json
RUNTIME_VERSION=$(grep spec_version runtime/$CHAIN/src/lib.rs | sed 's/.*version: //;s/,//')
RUNTIME_COMPRESSED_SIZE=$(cat "$SRTOOL_DIGEST_FILE" | jq .runtimes.compressed.size | sed 's/"//g')
Expand Down Expand Up @@ -256,12 +256,12 @@ EOF
commit=$(echo "$f" | cut -d'|' -f1)
desc=$(echo "$f" | cut -d'|' -f2)
output="- [\`$commit\`]($REPO/commit/$commit) $desc"

for ((i=0; i<${#labels[@]}; i++)); do
label=$(gh pr list --search "$commit" --label "${labels[i]}" --state merged)
[ -n "$label" ] && output+=" $REPO/labels/${labels[i]}"
done

echo "$output" >> "$1"
done
fi