This commit is contained in:
parent
a8275c7ff5
commit
9a62f4c271
42
.gitea/workflows/test.yaml
Normal file
42
.gitea/workflows/test.yaml
Normal file
@ -0,0 +1,42 @@
|
||||
name: Test cloud-images
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'test*'
|
||||
|
||||
jobs:
|
||||
building:
|
||||
runs-on: alt-sisyphus
|
||||
steps:
|
||||
- name: Configure ssh
|
||||
run: |
|
||||
mkdir -p ~/.ssh/
|
||||
echo "$SSH_KEY" > ~/.ssh/builder.key
|
||||
chmod 600 ~/.ssh/builder.key
|
||||
echo "SSH_USER=$SSH_USER, SSH_HOST=$SSH_HOST, SSH_TAISHAN_USER=$SSH_T_USER, SSH_TAISHAN_HOST=$SSH_T_HOST, SSH_TAISHAN_PORT=$SSH_T_PORT"
|
||||
#> ~/.ssh/known_hosts #SSH_KH: ${{ secrets.BUILDER_SSH_KH }}
|
||||
cat >>~/.ssh/config <<END
|
||||
Host builder
|
||||
HostName $SSH_HOST
|
||||
User $SSH_USER
|
||||
IdentityFile ~/.ssh/builder.key
|
||||
StrictHostKeyChecking no
|
||||
Host cb_taishan
|
||||
HostName 127.0.0.1
|
||||
User $SSH_T_USER
|
||||
Port $SSH_T_PORT
|
||||
IdentityFile ~/.ssh/builder.key
|
||||
IdentitiesOnly yes
|
||||
ProxyCommand ssh $SSH_T_USER@$SSH_T_HOST -W %h:%p
|
||||
StrictHostKeyChecking no
|
||||
END
|
||||
env:
|
||||
SSH_USER: ${{ secrets.BUILDER_SSH_USER }}
|
||||
SSH_KEY: ${{ secrets.BUILDER_SSH_KEY }}
|
||||
SSH_HOST: ${{ secrets.BUILDER_SSH_HOST }}
|
||||
SSH_T_USER: ${{ secrets.TAISHAN_SSH_USER }}
|
||||
SSH_T_PORT: ${{ secrets.TAISHAN_SSH_PORT }}
|
||||
SSH_T_HOST: ${{ secrets.TAISHAN_SSH_HOST }}
|
||||
- name: Run script for aarch
|
||||
run: |
|
||||
ssh cb_taishan 'ls -a'
|
Loading…
Reference in New Issue
Block a user