Build packages for mbedtls on 2024-12-13-14-04 (#10944)

* mbedtls => 3.6.2

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add built packages for linux/386 to mbedtls

* Add built packages for linux/amd64 to mbedtls

* Add built packages for linux/arm/v7 to mbedtls

* Try to trigger Unit Test workflow from Build workflow again.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Reduce workflow timestamp granularity.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust PR creation wording.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* suggested changes

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-12-13 13:42:19 -06:00
committed by GitHub
parent d1871f255a
commit e76e09a4ff
5 changed files with 29 additions and 16 deletions

View File

@@ -34,7 +34,7 @@ jobs:
- name: Set workflow & branch variables
id: set-variables
run: |
export TIMESTAMP="$(date -u +%F-%H-%M)"
export TIMESTAMP="$(date -u +%F-%H%Z)"
echo "TIMESTAMP=${TIMESTAMP}" >> $GITHUB_OUTPUT
generate:
strategy:
@@ -286,6 +286,16 @@ jobs:
echo "- ${file}" >> /tmp/pr.txt
done
cat /tmp/pr.txt
export PR_NUMBER=$(gh pr create --title "Automatic PR to build packages for ${{ github.ref_name }} on ${{ needs.setup.outputs.output1 }}" -F /tmp/pr.txt | rev | cut -d"/" -f1 | rev)
export PR_NUMBER=$(gh pr create --title "Automated Package Build: ${{ github.ref_name }} branch started at ${{ needs.setup.outputs.output1 }}" -F /tmp/pr.txt | rev | cut -d"/" -f1 | rev)
echo "PR_NUMBER is ${PR_NUMBER}"
echo "PR_NUMBER=${PR_NUMBER}" >> $GITHUB_ENV
- name: Trigger Unit Test Workflow
uses: actions/github-script@v6
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'Unit-Test.yml',
ref: '${{ github.ref_name }}'
})