mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
4d9787fb86
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]
9 lines
191 B
Bash
9 lines
191 B
Bash
#!/bin/bash
|
|
|
|
mkdir workspace
|
|
cd workspace
|
|
cp ~/builds/7TYBLKUtG/0/veilid/veilid/target/packages/*.deb .
|
|
tar -cf arm64-debs.tar *.deb
|
|
scp *.tar gitlab-runner@10.116.0.5:~
|
|
cd ~
|
|
rm -rf workspace |