Skip to content

Commit

Permalink
build-test-recipe: disable aws-iot-device-sdk-cpp-v2-samples-fleet-pr…
Browse files Browse the repository at this point in the history
…ovisoning

As this conflicts with greengrass-lite fleet-provisoning bin.
  • Loading branch information
thomas-roos committed Dec 17, 2024
1 parent efc1051 commit d1478d5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/build-test-all-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
trigger-branch-workflows:
runs-on: ubuntu-latest
Expand All @@ -22,26 +22,26 @@ jobs:
declare -A run_urls
for branch in "${branches[@]}"; do
echo "Attempting to trigger workflow for branch: $branch"
# Trigger the workflow using the GitHub API directly
response=$(curl -sS -X POST \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/${{ github.repository }}/actions/workflows/build-test-recipe.yml/dispatches" \
-d "{\"ref\":\"$branch\"}")
echo "API Response: $response"
# Check if the workflow was triggered successfully
if [ -z "$response" ]; then
echo "Workflow triggered successfully for $branch"
# Get the run ID and URL of the newly triggered workflow
sleep 5 # Wait a bit for the workflow to start
run_info=$(gh run list --workflow=build-test-recipe.yml --branch=$branch --limit 1 --json databaseId,url)
run_id=$(echo "$run_info" | jq -r '.[0].databaseId')
run_url=$(echo "$run_info" | jq -r '.[0].url')
if [ -n "$run_id" ]; then
run_ids["$branch"]="$run_id"
run_urls["$branch"]="$run_url"
Expand All @@ -54,7 +54,7 @@ jobs:
echo "API Response: $response"
fi
done
# Save run IDs and URLs to files for the next steps
echo "$(declare -p run_ids)" > run_ids.txt
echo "$(declare -p run_urls)" > run_urls.txt
Expand All @@ -68,16 +68,16 @@ jobs:
echo "" >> report.md
echo "| Branch | Run ID | Workflow Run |" >> report.md
echo "|--------|--------|--------------|" >> report.md
for branch in "${!run_ids[@]}"; do
id="${run_ids[$branch]}"
url="${run_urls[$branch]}"
echo "| $branch | $id | [View Run]($url) |" >> report.md
done
echo "## Triggered Workflows" >> $GITHUB_STEP_SUMMARY
cat report.md >> $GITHUB_STEP_SUMMARY
echo "Triggered workflows:"
cat report.md
Expand All @@ -86,8 +86,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
IFS=' ' read -ra run_ids <<< "${{ env.run_ids }}"
max_attempts=120 # Maximum 120 min exec time
max_attempts=180 # Maximum 180 min exec time
for attempt in $(seq 1 $max_attempts); do
all_completed=true
for run_id in "${run_ids[@]}"; do
Expand All @@ -97,17 +97,17 @@ jobs:
break
fi
done
if $all_completed; then
echo "All branch workflows have completed."
break
fi
if [ $attempt -eq $max_attempts ]; then
echo "Timeout waiting for workflows to complete."
exit 1
fi
echo "Waiting for workflows to complete... (Attempt $attempt/$max_attempts)"
sleep 60
done
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test-recipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
machine:
- qemuarm
- qemuarm64
- qemux86-64
- qemux86-64
runs-on: codebuild-${{ vars.CODEBUILD_RUNNER_NAME || 'meta-aws' }}-${{ github.run_id }}-${{ github.run_attempt }}
steps:
- name: Checkout meta-aws
Expand All @@ -89,7 +89,7 @@ jobs:
export RECIPES=$( echo "${{ needs.changed.outputs.diff }}" | tr ' ' '\n' | grep '\.bb.*$' | sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z $'s/\\\n/ /g')
if [ "" == "$RECIPES" ]; then
echo "No changed recipes, adding everything with a ptest to test, build"
THINGS_TO_EXCLUDE="! -name aws-lc* ! -name neo-ai-tv* ! -name corretto-17-bin* ! -name corretto-21-bin* ! -name corretto-8-bin* ! -name firecracker-bin* ! -name jailer-bin* ! -name amazon-kvs-producer-sdk-c* ! -name aws-cli-v2* "
THINGS_TO_EXCLUDE="! -name aws-lc* ! -name neo-ai-tv* ! -name corretto-17-bin* ! -name corretto-21-bin* ! -name corretto-8-bin* ! -name firecracker-bin* ! -name jailer-bin* ! -name amazon-kvs-producer-sdk-c* ! -name aws-cli-v2* ! -name aws-iot-device-sdk-cpp-v2-samples-fleet-provisoning* "
if [ ${{ matrix.machine }} == "qemuarm" ]; then
THINGS_TO_EXCLUDE+="! -name amazon-kvs-webrtc-sdk* ! -name amazon-kvs-producer-pic*"
fi
Expand Down

0 comments on commit d1478d5

Please sign in to comment.