Update to 1.8.0 #360
Workflow file for this run
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: pi-gen-action-integration-test | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'renovate.json' | |
branches: | |
- master | |
pull_request: | |
types: [ labeled, opened, synchronize, reopened ] | |
env: | |
MOUNT_DIR: /mnt | |
ROOTFS_DIR: /mnt/root | |
CONFIG_TIMEZONE: Europe/Berlin | |
CONFIG_LOCALE: de_DE.UTF-8 | |
CONFIG_USERNAME: pi-gen | |
CONFIG_HOSTNAME: pi-gen-test | |
jobs: | |
integration-test: | |
runs-on: ubuntu-latest | |
if: github.ref_name == 'master' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'test')) | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Compile action code before test | |
run: npm ci && npm run package | |
- name: Run pi-gen build | |
uses: ./ | |
id: build | |
with: | |
image-name: integration-test | |
stage-list: stage0 stage1 stage2 ./__test__/it-test-stage | |
verbose-output: true | |
enable-noobs: true | |
compression: xz | |
compression-level: 1 | |
locale: ${{ env.CONFIG_LOCALE }} | |
hostname: ${{ env.CONFIG_HOSTNAME }} | |
keyboard-keymap: de | |
keyboard-layout: German - no dead keys | |
username: ${{ env.CONFIG_USERNAME }} | |
wpa-essid: foo | |
wpa-password: '1234567890' | |
timezone: ${{ env.CONFIG_TIMEZONE }} | |
- name: List working directory | |
run: tree | |
- name: Uncompress image and mount loopback device | |
run: | | |
set -ex | |
xz -d ${{ steps.build.outputs.image-path }} | |
file_name="${{ steps.build.outputs.image-path }}" | |
./__test__/mount-pi-gen-image.sh "${file_name/.xz/}" $MOUNT_DIR | |
- name: Test configuration values | |
run: | | |
set -ex | |
test -x ${ROOTFS_DIR}/usr/bin/node | |
test "$(cat ${ROOTFS_DIR}/etc/hostname)" = "$CONFIG_HOSTNAME" | |
grep $CONFIG_USERNAME ${ROOTFS_DIR}/etc/passwd | |
source ${ROOTFS_DIR}/etc/default/locale | |
test "$LANG" = "$CONFIG_LOCALE" | |
test "$(cat ${ROOTFS_DIR}/etc/timezone)" = "$CONFIG_TIMEZONE" | |
- name: Remove test label from PR (if set) | |
uses: actions-ecosystem/action-remove-labels@v1 | |
if: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'test') }} | |
with: | |
labels: test | |