mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
Merge branch 'add_nightly_builds' into 'main'
Another tweak to GitLab secure storage See merge request veilid/veilid!300
This commit is contained in:
commit
b1ff6b643b
@ -172,7 +172,7 @@ build_repositories:
|
||||
tags:
|
||||
- build-orchestration
|
||||
variables:
|
||||
SECURE_FILES_DOWNLOAD_PATH: '/home/gitlab-runner/'
|
||||
SECURE_FILES_DOWNLOAD_PATH: './'
|
||||
script:
|
||||
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
|
||||
- cp scripts/cicd/build-orchestration/rpm-repo-building/Dockerfile ~/rpm-build-container
|
||||
@ -287,7 +287,7 @@ dryrun_build_repositories:
|
||||
tags:
|
||||
- build-orchestration
|
||||
variables:
|
||||
SECURE_FILES_DOWNLOAD_PATH: '/home/gitlab-runner/'
|
||||
SECURE_FILES_DOWNLOAD_PATH: './'
|
||||
script:
|
||||
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
|
||||
- cp scripts/cicd/build-orchestration/generate-release.sh ~
|
||||
@ -377,7 +377,7 @@ nightly_build_repositories:
|
||||
tags:
|
||||
- build-orchestration
|
||||
variables:
|
||||
SECURE_FILES_DOWNLOAD_PATH: '/home/gitlab-runner/'
|
||||
SECURE_FILES_DOWNLOAD_PATH: './'
|
||||
script:
|
||||
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
|
||||
- cp scripts/cicd/build-orchestration/generate-nightly-release.sh ~
|
||||
|
@ -10,7 +10,7 @@ rm -rf $HOME/srv/rpm/nightly/x86_64/*
|
||||
|
||||
# Setup crypto
|
||||
export GNUPGHOME="$(mktemp -d ~/pgpkeys-XXXXXX)"
|
||||
cat $HOME/veilid-packages-key.private | gpg --import
|
||||
cat veilid-packages-key.private | gpg --import
|
||||
gpg --armor --export admin@veilid.org > $HOME/srv/gpg/veilid-packages-key.public
|
||||
|
||||
# Copy .deb files into the workspace and generate repo files
|
||||
|
@ -10,7 +10,7 @@ rm -rf $HOME/srv/rpm/stable/x86_64/*
|
||||
|
||||
# Setup crypto
|
||||
export GNUPGHOME="$(mktemp -d ~/pgpkeys-XXXXXX)"
|
||||
cat $HOME/veilid-packages-key.private | gpg --import
|
||||
cat veilid-packages-key.private | gpg --import
|
||||
gpg --armor --export admin@veilid.org > $HOME/srv/gpg/veilid-packages-key.public
|
||||
|
||||
# Copy .deb files into the workspace and generate repo files
|
||||
@ -39,7 +39,7 @@ tar -xf amd64-rpms.tar
|
||||
echo "Copying rpms to container workspace"
|
||||
cp *x86_64.rpm $HOME/rpm-build-container/mount/repo/stable/x86_64
|
||||
echo "Copying signing material to container workspace"
|
||||
cp -R $GNUPGHOME $HOME/rpm-build-container/mount/keystore
|
||||
cp -R $GNUPGHOME/* $HOME/rpm-build-container/mount/keystore
|
||||
echo "Executing container actions"
|
||||
docker run --rm -d -it --name rpm-repo-builder --mount type=bind,source=$HOME/rpm-build-container/mount,target=/mount rpm-repo-builder-img:v12
|
||||
sleep 2
|
||||
|
Loading…
Reference in New Issue
Block a user