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 13, 2024
1 parent 07d3363 commit 37d5d8e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build Project
on:
push:
branches:
- add_ci
workflow_dispatch:
# 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 37d5d8e

Please sign in to comment.