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

Syncing GH workflows #43

Merged
merged 11 commits into from
Nov 23, 2022
39 changes: 39 additions & 0 deletions .github/workflows/auto-cherry-pick.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
on:
pull_request:
branches:
- main
types: ["closed"]

jobs:
cherry_pick_kirkstone:
runs-on: ubuntu-22.04
name: Cherry pick into kirkstone
if: contains(github.event.pull_request.labels.*.name, 'kirkstone')
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into kirkstone
uses: carloscastrojumo/github-cherry-pick-action@v1.0.4
with:
branch: kirkstone
labels: |
cherry-pick
cherry_pick_honister:
runs-on: ubuntu-22.04
name: Cherry pick into honister
if: contains(github.event.pull_request.labels.*.name, 'honister')
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into honister
uses: carloscastrojumo/github-cherry-pick-action@v1.0.4
with:
branch: honister
labels: |
cherry-pick
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/dryrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
mybranch:
name: Yocto (This Branch)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/leda-utils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
leda-utils:
name: Leda Utils Recipe
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/prebuild-actions-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# ********************************************************************************/

SUMMARY = "A full quickstart image with all features and convenience tools enabled."
LICENSE = "EPL"
LICENSE = "Apache-2.0"

# Debug tweaks
IMAGE_FEATURES:append = " debug-tweaks"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# ********************************************************************************/

SUMMARY = "A full quickstart image with all features and convenience tools enabled."
LICENSE = "Apache-2.0"

IMAGE_INSTALL = "packagegroup-core-boot ${CORE_IMAGE_EXTRA_INSTALL}"
IMAGE_INSTALL:append = " kernel-image kernel-modules"
Expand All @@ -29,7 +30,6 @@ IMAGE_INSTALL:append = " packagegroup-sdv-examples"

IMAGE_LINGUAS = " "

LICENSE = "EPL"

# Debug tweaks
IMAGE_FEATURES:append = " debug-tweaks"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# ********************************************************************************/

SUMMARY = "A minimal quickstart image with only core SDV packages installed."
LICENSE = "Apache-2.0"

IMAGE_INSTALL = "packagegroup-core-boot ${CORE_IMAGE_EXTRA_INSTALL}"
IMAGE_INSTALL:append = " kernel-image kernel-modules"
Expand All @@ -21,7 +22,6 @@ IMAGE_INSTALL:append = " packagegroup-sdv-core"

IMAGE_LINGUAS = " "

LICENSE = "EPL"

# Debug tweaks
IMAGE_FEATURES:append = " debug-tweaks"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# ********************************************************************************/

SUMMARY = "A minimalistic rescue-system image for a reset-device-to-factory-defaults showcase."
LICENSE = "Apache-2.0"

IMAGE_INSTALL = "packagegroup-core-boot ${CORE_IMAGE_EXTRA_INSTALL}"
IMAGE_INSTALL:append = " kernel-image kernel-modules"
Expand All @@ -28,7 +29,6 @@ IMAGE_FEATURES:append = " empty-root-password"

IMAGE_LINGUAS = " "

LICENSE = "EPL"

inherit core-image

Expand Down