Packer build qemu #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Packer build qemu | |
on: | |
workflow_run: | |
workflows: ["Build and Publish devcontainer image"] | |
types: | |
- completed | |
jobs: | |
build: | |
runs-on: codespaces | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup packer | |
uses: hashicorp/setup-packer@1aa358be5cf73883762b302a3a03abd66e75b232 # v3.1.0 | |
id: setup | |
with: | |
version: 1.11.2 | |
- name: Generate cloud-init iso | |
run: | | |
sudo apt install genisoimage | |
echo '#cloud-config | |
chpasswd: | |
expire: False | |
users: | |
- {name: debian, password: password, type: text} | |
ssh_pwauth: True' > user-data | |
echo 'instance-id: iid-local01 | |
local-hostname: localhost' > meta-data | |
genisoimage -output ci-data.iso -volid cidata -joliet -rock user-data meta-data | |
- name: Install qemu | |
run: sudo apt-get update && sudo apt-get install qemu-system -y | |
- name: Run packer init | |
id: init | |
run: packer init qemu.pkr.hcl | |
- name: Run packer build | |
id: build | |
run: packer build -var glueops_codespaces_container_tag=${{ github.event.workflow_run.head_branch }} qemu.pkr.hcl | |
- id: install-aws-cli | |
uses: unfor19/install-aws-cli-action@v1 | |
with: | |
version: 2 | |
verbose: false | |
arch: amd64 | |
- name: copy file to s3 storage | |
run: | | |
aws s3 cp images/${{ github.event.workflow_run.head_branch }}.qcow2 s3://${{ secrets.S3_BUCKET }}/${{ github.event.workflow_run.head_branch }}.qcow2 | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: ${{ secrets.S3_BUCKET_REGION }} | |