opendds: version bump 3.26.1 -> 3.27.0 #14
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
name: Run Yocto Check Layer | |
on: | |
pull_request: | |
types: [opened, reopened] | |
workflow_dispatch: | |
env: | |
YOCTO_RELEASE: kirkstone | |
jobs: | |
yocto-check-layer: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install yocto build dependancies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gawk wget git diffstat unzip texinfo gcc \ | |
build-essential chrpath socat cpio python3 python3-pip python3-pexpect \ | |
xz-utils debianutils iputils-ping python3-git python3-jinja2 \ | |
libegl1-mesa libsdl1.2-dev pylint3 xterm python3-subunit \ | |
mesa-common-dev zstd liblz4-tool | |
- name: Check out meta-opendds repo | |
uses: actions/checkout@v4 | |
- name: Run yocto check layer script | |
run: | | |
"${GITHUB_WORKSPACE}/.github/scripts/yocto-check-layer.sh" |