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

test change. #66

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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*
Loading