Compare commits

...

4 Commits

Author SHA1 Message Date
Robert Nelson cbfcd8e464 ci: auto pull on every build
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
3 weeks ago
Robert Nelson 634bf823ce ci: branch: pull from everywhere
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
3 weeks ago
Robert Nelson fb2782db56 u-boot: migrate to github mirror
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
3 weeks ago
Robert Nelson 7f6fd3bab8 readme: move daily ci, mirror on github
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
3 weeks ago

@ -1,8 +1,9 @@
before_script:
- export PATH=/usr/lib/ccache:$PATH
- touch .gitlab-runner
- git config --global user.email "$GITLAB_USER_EMAIL"
- git config --global user.name "$GITLAB_USER_NAME"
- touch .gitlab-runner
- git config --global advice.detachedHead false
build-v6.1-debian-13-riscv64:
image: robertcnelson/beagle-devscripts-kernel-debian-12-amd64:latest
@ -16,6 +17,7 @@ build-v6.1-debian-13-riscv64:
- docker-amd64
stage: build
script:
- ./scripts/pull.sh
- ./01_git_sync.sh
- ./02_build_hss.sh
- ./03_build_u-boot.sh
@ -55,6 +57,7 @@ build-v6.1-ubuntu-2404-riscv64:
- docker-amd64
stage: build
script:
- ./scripts/pull.sh
- ./01_git_sync.sh
- ./02_build_hss.sh
- ./03_build_u-boot.sh

@ -10,11 +10,11 @@ HSS_REPO="https://github.com/polarfire-soc/hart-software-services.git"
#UBOOT_BRANCH="linux4microchip+fpga-2023.02"
#UBOOT_REPO="https://github.com/polarfire-soc/u-boot.git"
UBOOT_BRANCH="v2023.02-BeagleV-Fire"
UBOOT_REPO="https://openbeagle.org/beaglev-fire/beaglev-fire-u-boot.git"
UBOOT_REPO="https://github.com/beagleboard/beaglev-fire-u-boot.git"
#UBOOT_REPO="git@openbeagle.org:beaglev-fire/beaglev-fire-u-boot.git"
DT_BRANCH="v6.1.x-Beagle"
DT_REPO="https://openbeagle.org/beagleboard/BeagleBoard-DeviceTrees.git"
DT_REPO="https://github.com/beagleboard/BeagleBoard-DeviceTrees.git"
#DT_REPO="git@openbeagle.org:beagleboard/BeagleBoard-DeviceTrees.git"
LINUX_BRANCH="linux4microchip+fpga-2023.06"

@ -1,8 +1,20 @@
# Weekly BUILDS for Debian 13 (trixie) and Ubuntu 24.04 (noble)
https://gitlab.com/RobertCNelson/beaglev-fire-ubuntu/-/artifacts
# Mirrors:
Main Mirror: https://github.com/beagleboard/BeagleV-Fire-ubuntu
Builds on every commit: https://openbeagle.org/beaglev-fire/BeagleV-Fire-ubuntu
Daily CI Builds: https://gitlab.com/RobertCNelson/beaglev-fire-ubuntu
# Build Depends
```
sudo apt update
sudo apt install bmap-tools dosfstools genimage libyaml-dev mtools
sudo apt update ;\
sudo apt-get install -y bison bmap-tools dosfstools genimage flex libelf-dev libyaml-dev mtools
```
# Building Microchip Linux tree

@ -0,0 +1,5 @@
#!/bin/bash
git pull --rebase --no-edit https://github.com/beagleboard/BeagleV-Fire-ubuntu.git v6.1.x-Beagle
git pull --rebase --no-edit https://openbeagle.org/beaglev-fire/BeagleV-Fire-ubuntu.git v6.1.x-Beagle
git pull --rebase --no-edit https://gitlab.com/RobertCNelson/beaglev-fire-ubuntu.git v6.1.x-Beagle
Loading…
Cancel
Save