-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c07cdd7
commit a127e44
Showing
1 changed file
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
name: auto-recipe-update | ||
|
||
on: | ||
schedule: | ||
- cron: '0 1 * * 2-5' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update: | ||
name: Recipe Update | ||
|
@@ -18,31 +16,35 @@ jobs: | |
python3-jinja2 xterm python3-subunit zstd liblz4-tool | ||
git config --global user.name aws-iot-embedded-linux-ci | ||
git config --global user.email [email protected] | ||
git clone git://git.yoctoproject.org/poky -b master | ||
git clone https://github.com/openembedded/meta-openembedded.git -b master | ||
git clone git://git.yoctoproject.org/poky -b ${{ github.ref_name }} | ||
git clone https://github.com/openembedded/meta-openembedded.git -b ${{ github.ref_name }} | ||
- name: Clone Our Layer | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: master-next | ||
ref: ${{ github.ref_name }}-next | ||
path: meta-aws | ||
fetch-depth: 0 | ||
- name: Clone CI Tolls Repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
path: ci | ||
repository: 'aws4embeddedlinux/meta-aws-ci' | ||
ref: master | ||
- name: Install Helper Tool | ||
run: | | ||
pip install ci/auto-upgrader | ||
- name: Run Update | ||
run: | | ||
source poky/oe-init-build-env build | ||
git -C ../poky status | ||
git -C ../meta-openembedded/ status | ||
git -C ../meta-aws/ status | ||
bitbake-layers add-layer ../meta-openembedded/meta-oe | ||
bitbake-layers add-layer ../meta-openembedded/meta-python | ||
bitbake-layers add-layer ../meta-openembedded/meta-multimedia | ||
bitbake-layers add-layer ../meta-openembedded/meta-networking | ||
bitbake-layers add-layer ../meta-aws | ||
upgrader update --layer-path ../meta-aws | ||
upgrader update --layer-path ../meta-aws --target-branch=${{ github.ref_name }}-next | ||
- name: Push Result | ||
working-directory: meta-aws | ||
run: | | ||
|
@@ -52,9 +54,9 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.BOT_CREDENTIAL }} | ||
run: | | ||
upgrader create-pulls --branch-file=../build/branches.txt --repo=${{ github.repository }} --target-branch="master-next" --delay 1800 | ||
upgrader create-pulls --branch-file=../build/branches.txt --repo=${{ github.repository }} --target-branch=${{ github.ref_name }}-next --delay 300 | ||
- name: Publish Artifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: updated-recipes | ||
path: | | ||
|