Skip to content

Commit

Permalink
Pyro initial implementation
Browse files Browse the repository at this point in the history
based of krogoth branches
  • Loading branch information
priv-kweihmann committed Feb 8, 2020
1 parent 1cdf436 commit d066bab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "[krogoth]-classic"
name: "[pyro]-classic"

on:
push:
Expand All @@ -11,7 +11,7 @@ jobs:
env:
DISTRO: scatest
MACHINE: qemux86
SCABRANCH: krogoth
SCABRANCH: pyro
ENABLEMETAOE: 0
ENABLEMETACLANG: 0
PARAMFILE: standard_01
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
run: |
cd ${WORKSPACE}
source poky/oe-init-build-env
timeout --foreground $MAXRUNTIME ${WORKSPACE}/meta-sca/recipes-sca-test/test_$PARAMFILE.sh || if [ $? == 124 ]; then echo "Timeout"; else exit 1; fi;
timeout --foreground --kill-after=60s $MAXRUNTIME ${WORKSPACE}/meta-sca/recipes-sca-test/test_$PARAMFILE.sh || if [ $? == 124 ]; then echo "Timeout"; else exit 1; fi;
shell: bash
- name: test results
run: |
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
# distro to build
- DISTRO=scatest
# Target branch of other layer-repos
- SCA_BRANCH=krogoth
- SCA_BRANCH=pyro
# bitbake target to build
- SCA_TARGET_IMG=core-image-minimal-scatest
# Builddir
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

![https://img.shields.io/badge/Supported%20languages-C%2CC%2B%2B%2CPython%2CShell-informational](https://img.shields.io/badge/Supported%20languages-C%2CC%2B%2B%2CPython%2CShell-informational)

[![Build Status](https://travis-ci.org/priv-kweihmann/meta-sca.svg?branch=krogoth)](https://travis-ci.org/priv-kweihmann/meta-sca)
[![Nightly classic](https://github.com/priv-kweihmann/meta-sca/workflows/[krogoth]-classic/badge.svg)](https://github.com/priv-kweihmann/meta-sca/actions)
[![Build Status](https://travis-ci.org/priv-kweihmann/meta-sca.svg?branch=pyro)](https://travis-ci.org/priv-kweihmann/meta-sca)
[![Nightly classic](https://github.com/priv-kweihmann/meta-sca/workflows/[pyro]-classic/badge.svg)](https://github.com/priv-kweihmann/meta-sca/actions)

## Notice

This is the release branch for YOCTO `krogoth`.
This is the release branch for YOCTO `pyro`.

As this layer ran out of support by YOCTO, don't expect regular updates here as well.

Expand Down Expand Up @@ -61,7 +61,7 @@ To install clone the needed brach(es) to any path on your local system.

### Prerequisites

- You need the `krogoth` standard [__poky__-layer](https://git.yoctoproject.org/cgit/cgit.cgi/poky/?h=krogoth) installed onto your local build environment.
- You need the `pyro` standard [__poky__-layer](https://git.yoctoproject.org/cgit/cgit.cgi/poky/?h=pyro) installed onto your local build environment.
- You need at least **python 3.4** needs to be installed on your build host.
- You need **glib-2.0-dev** installed on your build host (used for e.g. configcheck, lynis, tiger, upc)

Expand Down
2 changes: 1 addition & 1 deletion conf/layer.conf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ LAYERVERSION_meta-sca = "1"
LAYERDEPENDS_meta-sca = "core"
SCA_LAYERDIR = "${LAYERDIR}"

LAYERSERIES_COMPAT_meta-sca = "krogoth"
LAYERSERIES_COMPAT_meta-sca = "pyro"

LICENSE_PATH += "${LAYERDIR}/files/licenses/"

0 comments on commit d066bab

Please sign in to comment.