Skip to content

Commit

Permalink
test change.
Browse files Browse the repository at this point in the history
  • Loading branch information
nateglims committed Aug 23, 2023
1 parent 35fc954 commit 5adb315
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions demos-pipeline/lib/source-repo/nxp/build.buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
version: 0.2
run-as: yoctouser

env:
shell: bash

phases:
pre_build:
run-as: root
commands:
- chown -R yoctouser /sstate-cache
- chown -R yoctouser /downloads
- chown yoctouser /build-output
- chmod 755 /sstate-cache
- chmod 755 /downloads
- chmod 755 /build-output
- apt-get install -yq repo
build:
commands:
- echo Build started on `date`
- repo init -- # EDIT HERE
- repo sync
- . poky/oe-init-build-env $TMP_DIR
- bitbake core-image-minimal

post_build:
commands:
- echo Build completed on `date`
- bitbake -m
- ps aux | grep bitbake
- find $TMP_DIR -name '*.socket' -delete
- export BUILD_OUTPUT="$(uuidgen -t).tar"
- tar cf $BUILD_OUTPUT -C $TMP_DIR tmp
- cp -r $BUILD_OUTPUT /build-output
- echo $BUILD_OUTPUT > /build-output/tmpfile

artifacts:
discard-paths: true
files:
- /build-output/tmpfile
- $TMP_DIR/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64*

0 comments on commit 5adb315

Please sign in to comment.