From d3a3a08d5ef19f072c0576fc8680960d43e6a4e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Molinero=20Fern=C3=A1ndez?= Date: Wed, 2 Mar 2022 22:24:50 +0100 Subject: [PATCH] Added GitHub workflow for CI --- .github/workflows/ci.yml | 77 ++++++++++++++++++++++++++++++++++++++++ packer/Makefile | 2 +- 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a9db2d8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,77 @@ +name: 'CI' + +on: + push: + tags: ['*'] + branches: ['*'] + pull_request: + branches: ['*'] + schedule: + - cron: '20 04 1,15 * *' + workflow_dispatch: + +jobs: + + validate-packer: + name: 'Validate Packer configuration' + runs-on: 'ubuntu-20.04' + defaults: + run: + working-directory: './packer/' + steps: + - name: 'Checkout project' + uses: 'actions/checkout@v3' + - name: 'Install dependencies' + run: | + curl -fsSL 'https://apt.releases.hashicorp.com/gpg' | sudo apt-key add - + sudo apt-add-repository "deb [arch=$(dpkg --print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main" + sudo apt-get update && sudo apt-get install -y --no-install-recommends packer + - name: 'Validate configuration' + run: | + packer validate ./ + - name: 'Check configuration format' + run: | + packer fmt -check -diff ./ + + validate-terraform: + name: 'Validate Terraform configuration' + runs-on: 'ubuntu-20.04' + defaults: + run: + working-directory: './terraform/' + steps: + - name: 'Checkout project' + uses: 'actions/checkout@v3' + - name: 'Install dependencies' + run: | + curl -fsSL 'https://apt.releases.hashicorp.com/gpg' | sudo apt-key add - + sudo apt-add-repository "deb [arch=$(dpkg --print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main" + sudo apt-get update && sudo apt-get install -y --no-install-recommends terraform + - name: 'Init Terraform' + run: | + terraform init + - name: 'Validate configuration' + run: | + terraform validate ./ + - name: 'Check configuration format' + run: | + terraform fmt -check -diff ./ + + build-packer: + name: 'Build Packer image' + needs: ['validate-packer'] + runs-on: 'ubuntu-20.04' + defaults: + run: + working-directory: './packer/' + steps: + - name: 'Checkout project' + uses: 'actions/checkout@v3' + - name: 'Install dependencies' + run: | + curl -fsSL 'https://apt.releases.hashicorp.com/gpg' | sudo apt-key add - + sudo apt-add-repository "deb [arch=$(dpkg --print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main" + sudo apt-get update && sudo apt-get install -y --no-install-recommends packer qemu-utils qemu-system-x86 + - name: 'Build image' + run: | + make build-qemu PACKER_LOG=1 PKR_VAR_qemu_accelerator=none diff --git a/packer/Makefile b/packer/Makefile index 90e66f9..b932e2e 100644 --- a/packer/Makefile +++ b/packer/Makefile @@ -1,7 +1,7 @@ #!/usr/bin/make -f SHELL := /bin/sh -.SHELLFLAGS := -eu -c +.SHELLFLAGS := -euc PACKER := $(shell command -v packer 2>/dev/null)