mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-26 02:30:48 -06:00
fc7debba3f
- Restructured linux repo directory structure to include Stable and Nightly releases - Reworked Earthfile to pass IS_NIGHTLY boolean to package build scripts for use in file names - Added nightly pipeline to CICD config yaml. Pipeline is triggered by IS_NIGHTLY variable - Two distribution scripts now exist, one for Stable and one for Nightly - Reworked RPM build spec files to create appropriate file names - Reworked debian release generation scripts - RPM repo directory structure is prepped for arm64 builds - Switched from scp to rsync for moving the completed repo from ochestration to repo server - Created schedule in Gitlab UI to trigger nightly release at 2300 Central Time
11 lines
340 B
Bash
11 lines
340 B
Bash
#!/bin/bash
|
|
|
|
mkdir workspace
|
|
cd workspace
|
|
# if a new GitLab runner is created, the identifier below that follows build/ will be invalid
|
|
# it might be available as a runner variable but IDK
|
|
cp ~/builds/t338Uo9fn/0/veilid/veilid/target/packages/*.deb .
|
|
tar -cf amd64-debs.tar *.deb
|
|
scp *.tar gitlab-runner@10.116.0.5:~
|
|
cd ../
|
|
rm -rf workspace |