2023-05-12 08:11:38 +00:00
|
|
|
name: Oracle Linux images
|
2023-05-12 00:59:36 +00:00
|
|
|
|
|
|
|
on:
|
2023-05-12 01:32:46 +00:00
|
|
|
workflow_dispatch:
|
2023-05-12 01:04:17 +00:00
|
|
|
push:
|
|
|
|
paths:
|
2023-05-12 08:11:38 +00:00
|
|
|
- 'tools/qemu-oraclelinux-img/**'
|
2023-05-12 09:12:18 +00:00
|
|
|
- '.github/workflows/images-oraclelinux.yml'
|
2023-05-12 00:59:36 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-05-12 08:11:38 +00:00
|
|
|
images-oraclelinux:
|
|
|
|
name: Generate Oracle Linux images
|
2023-05-12 00:59:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-12 06:58:17 +00:00
|
|
|
- uses: digitalocean/action-doctl@v2
|
2023-05-12 01:31:14 +00:00
|
|
|
with:
|
2023-05-12 06:58:17 +00:00
|
|
|
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
|
2023-05-12 01:31:14 +00:00
|
|
|
|
2023-05-12 06:58:17 +00:00
|
|
|
- uses: webfactory/ssh-agent@v0.8.0
|
2023-05-12 01:31:14 +00:00
|
|
|
with:
|
2023-05-12 06:58:17 +00:00
|
|
|
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
2023-05-12 01:31:14 +00:00
|
|
|
|
2023-05-12 06:58:17 +00:00
|
|
|
- name: create droplet
|
2023-05-12 08:11:38 +00:00
|
|
|
run: doctl compute droplet create --ssh-keys='b4:4c:66:7d:be:19:25:43:1c:e0:02:61:9f:49:12:94' --tag-name=github-actions ga-out-of-tree-images-oraclelinux-$GITHUB_SHA --size s-1vcpu-1gb --image ubuntu-22-04-x64 --wait
|
2023-05-12 01:31:14 +00:00
|
|
|
|
2023-05-12 06:58:17 +00:00
|
|
|
- name: generate images
|
|
|
|
run: |
|
2023-05-12 08:11:38 +00:00
|
|
|
IP=$(doctl compute droplet list --tag-name=github-actions --format "Name,Public IPv4" | grep -v ID | grep ga-out-of-tree-images-oraclelinux-$GITHUB_SHA | awk '{print $2}')
|
2023-05-12 07:09:56 +00:00
|
|
|
sleep 1m
|
2023-05-12 07:36:32 +00:00
|
|
|
ssh -o StrictHostKeyChecking=accept-new root@$IP pkill apt-get
|
2023-05-12 07:47:22 +00:00
|
|
|
ssh root@$IP apt-get update
|
|
|
|
ssh root@$IP apt-get install -y git podman s3cmd
|
|
|
|
ssh root@$IP git clone https://github.com/out-of-tree/out-of-tree
|
|
|
|
ssh root@$IP "cd out-of-tree && git checkout $GITHUB_SHA"
|
2023-05-12 08:11:38 +00:00
|
|
|
ssh root@$IP ./out-of-tree/tools/qemu-oraclelinux-img/generate-images.sh
|
|
|
|
ssh root@$IP "s3cmd put ./out-of-tree/tools/qemu-oraclelinux-img/*.tar.gz s3://out-of-tree/1.0.0 --host=fra1.digitaloceanspaces.com --access_key=${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }} --secret_key=${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}"
|
2023-05-12 06:58:17 +00:00
|
|
|
|
2023-05-12 07:47:22 +00:00
|
|
|
- name: delete droplet
|
|
|
|
if: always()
|
2023-05-12 08:11:38 +00:00
|
|
|
run: doctl compute droplet delete -f ga-out-of-tree-images-oraclelinux-$GITHUB_SHA
|