mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
don't call repeatedly
This commit is contained in:
parent
4ed0636e03
commit
62d5c9a2a2
2 changed files with 18 additions and 52 deletions
19
.github/workflows/test_deployment.yml
vendored
19
.github/workflows/test_deployment.yml
vendored
|
|
@ -85,28 +85,15 @@ jobs:
|
|||
with:
|
||||
name: ${{ format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version) }}
|
||||
|
||||
- name: Add Kickstart and Grub options to ISO
|
||||
run: |
|
||||
make test/vm/files/install.iso ISO_NAME=${{ format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version) }}.iso
|
||||
|
||||
- name: Create VM disk
|
||||
run: |
|
||||
make test/vm/files/disk.qcow2
|
||||
|
||||
- name: Install the test VM
|
||||
run: |
|
||||
make test/vm/install_os
|
||||
|
||||
- name: Start the test VM
|
||||
- name: Run VM Tests
|
||||
env:
|
||||
VM_USER: core
|
||||
VM_PASS: foobar
|
||||
VM_IP: "127.0.0.1"
|
||||
VM_PORT: "5555"
|
||||
run: |
|
||||
make test/vm/start_vm
|
||||
|
||||
make test/vm VM_IP=${VM_IP} VM_PORT=${VM_PORT} VM_USER=${VM_USER} VM_PASS=${VM_PASS} \
|
||||
make test/vm ISO_NAME=${{ format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version) }}.iso \
|
||||
VM_IP=${VM_IP} VM_PORT=${VM_PORT} VM_USER=${VM_USER} VM_PASS=${VM_PASS} \
|
||||
ARCH=${{ needs.load_vars.outputs.ARCH}} \
|
||||
IMAGE_NAME=${{ needs.load_vars.outputs.IMAGE_NAME}} \
|
||||
IMAGE_REPO=${{ needs.load_vars.outputs.IMAGE_REPO}} \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue