This commit is contained in:
Denix 2024-04-29 22:34:55 +12:00 committed by GitHub
commit 496cf0efef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 43 additions and 0 deletions

43
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,43 @@
stages:
- fetch-assets
- generate-gitlab-ci
- build
fetch-assets:
stage: fetch-assets
artifacts:
untracked: true
expire_in: 1 day
when: on_success
paths:
- buildroot
script:
- git submodule update --init --recursive
- git submodule update --remote --merge
- ./scripts/br-patches.sh
build rpi3-gui:
stage: build
when: manual
dependencies:
- fetch-assets
artifacts:
when: on_success
paths:
- release
script:
- make clean
- make rpi3_64-gui
build rpi4-gui:
stage: build
when: manual
dependencies:
- fetch-assets
artifacts:
when: on_success
paths:
- release
script:
- make clean
- make rpi4_64-gui