Skip to content

Commit

Permalink
test action
Browse files Browse the repository at this point in the history
Signed-off-by: Andreea Andrisan <[email protected]>
  • Loading branch information
AAndrisa committed Dec 16, 2024
1 parent 07d3363 commit e09aa58
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Project
on:
push:
branches:
- add_ci
repository_dispatch:
types: [my-event]
# inputs:
# branch:
# description: 'Branch from other dependecie that triggerd the buuild'
# required: true
# default: 'main'

jobs:
Build:
runs-on: [self-hosted, lnxdsp]
steps:
- name: Cleanup build folder
run: |
ls -al ./
rm -rf ./* || true
- name: Build Project
run: |
# mkdir lnxdsp-build && cd lnxdsp-build
# mkdir bin
# curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ./bin/repo
# chmod a+x ./bin/repo
# ./bin/repo init -u https://github.com/analogdevicesinc/lnxdsp-repo-manifest.git -b main -m ${{ github.event.inputs.branch }}.xml
# ./bin/repo sync
# source setup-environment -m adsp-sc598-som-ezkit
# bitbake adsp-sc5xx-minimal
echo "Branch .xml"

0 comments on commit e09aa58

Please sign in to comment.