veilid/scripts/cicd/build-machine/scp-amd64-rpms-to-orchestrator.sh
TC Johnson 4d9787fb86
Fixes scp from build machines to orchestrator
Each machine needed a script this specified that machine's arch
and OS type. Also added a rule on the cache and test jobs to not
run if the dry run trigger is present. [ci dryrun]
2024-04-29 17:07:40 -05:00

9 lines
191 B
Bash

#!/bin/bash
mkdir workspace
cd workspace
cp ~/builds/C6yRimG-M/0/veilid/veilid/target/packages/*.rpm .
tar -cf amd64-rpms.tar *.rpm
scp *.tar gitlab-runner@10.116.0.5:~
cd ~
rm -rf workspace