Skip to content

Commit 51480ca

Browse files
committed
uncomment
1 parent f17bd39 commit 51480ca

4 files changed

Lines changed: 74 additions & 43 deletions

File tree

.github/workflows/build.yml

Lines changed: 72 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -42,30 +42,45 @@ jobs:
4242
build-docs:
4343
uses: ./.github/workflows/docs-build.yml
4444

45-
# tests-functional-azl3-amd64:
46-
# name: Functional tests AZL3 AMD64
47-
# if: ${{ inputs.runFunctionalTests }}
48-
# uses: ./.github/workflows/tests-functional.yml
49-
# with:
50-
# hostArch: amd64
51-
# hostDistro: azl3
52-
53-
# tests-functional-azl3-arm64:
54-
# name: Functional tests AZL3 ARM64
55-
# if: ${{ inputs.runFunctionalTests }}
56-
# uses: ./.github/workflows/tests-functional.yml
57-
# with:
58-
# hostArch: arm64
59-
# hostDistro: azl3
60-
61-
# tests-functional-ubuntu2404-amd64:
62-
# name: Functional tests Ubuntu24.04 AMD64
63-
# if: ${{ inputs.runFunctionalTests }}
64-
# uses: ./.github/workflows/tests-functional.yml
65-
# with:
66-
# hostArch: amd64
67-
# hostDistro: ubuntu2404
45+
tests-functional-azl3-amd64:
46+
name: Functional tests AZL3 AMD64
47+
if: ${{ inputs.runFunctionalTests }}
48+
uses: ./.github/workflows/tests-functional.yml
49+
with:
50+
hostArch: amd64
51+
hostDistro: azl3
52+
53+
tests-functional-azl3-arm64:
54+
name: Functional tests AZL3 ARM64
55+
if: ${{ inputs.runFunctionalTests }}
56+
uses: ./.github/workflows/tests-functional.yml
57+
with:
58+
hostArch: arm64
59+
hostDistro: azl3
60+
61+
tests-functional-ubuntu2404-amd64:
62+
name: Functional tests Ubuntu24.04 AMD64
63+
if: ${{ inputs.runFunctionalTests }}
64+
uses: ./.github/workflows/tests-functional.yml
65+
with:
66+
hostArch: amd64
67+
hostDistro: ubuntu2404
68+
69+
tests-functional-ubuntu2404-arm64:
70+
name: Functional tests Ubuntu24.04 ARM64
71+
if: ${{ inputs.runFunctionalTests }}
72+
uses: ./.github/workflows/tests-functional.yml
73+
with:
74+
hostArch: arm64
75+
hostDistro: ubuntu2404
6876

77+
imagecreator-tests-functional-azl3-amd64:
78+
name: Functional tests AZL3 AMD64
79+
if: ${{ inputs.runFunctionalTests }}
80+
uses: ./.github/workflows/imagecreator-tests-functional.yml
81+
with:
82+
hostArch: amd64
83+
hostDistro: azl3
6984
tests-functional-ubuntu2404-arm64:
7085
name: Functional tests Ubuntu24.04 ARM64
7186
if: ${{ inputs.runFunctionalTests }}
@@ -82,27 +97,45 @@ jobs:
8297
hostArch: amd64
8398
hostDistro: azl3
8499

85-
# imagecreator-tests-functional-ubuntu2404-amd64:
86-
# name: Functional tests Ubuntu24.04 AMD64
87-
# if: ${{ inputs.runFunctionalTests }}
88-
# uses: ./.github/workflows/imagecreator-tests-functional.yml
89-
# with:
90-
# hostArch: amd64
91-
# hostDistro: ubuntu2404
92-
93-
# tests-vmtests-azl3-amd64:
94-
# name: VMTests suite AZL3 AMD64
95-
# if: ${{ inputs.runVMTests }}
96-
# needs: binary-build-amd64
97-
# uses: ./.github/workflows/tests-vmtests.yml
98-
# with:
99-
# hostArch: amd64
100-
# hostDistro: azl3
100+
imagecreator-tests-functional-ubuntu2404-amd64:
101+
name: Functional tests Ubuntu24.04 AMD64
102+
if: ${{ inputs.runFunctionalTests }}
103+
uses: ./.github/workflows/imagecreator-tests-functional.yml
104+
with:
105+
hostArch: amd64
106+
hostDistro: ubuntu2404
107+
108+
tests-vmtests-azl3-amd64:
109+
name: VMTests suite AZL3 AMD64
110+
if: ${{ inputs.runVMTests }}
111+
needs: binary-build-amd64
112+
uses: ./.github/workflows/tests-vmtests.yml
113+
with:
114+
hostArch: amd64
115+
hostDistro: azl3
101116

102117
tests-vmtests-ubuntu2404-amd64:
103118
name: VMTests suite Ubuntu24.04 AMD64
104119
if: ${{ inputs.runVMTests }}
105120
needs: binary-build-amd64
121+
uses: ./.github/workflows/tests-vmtests.yml
122+
with:
123+
hostArch: amd64
124+
hostDistro: ubuntu2404
125+
126+
tests-vmtests-ubuntu2404-arm64:
127+
name: VMTests suite Ubuntu24.04 ARM64
128+
if: ${{ inputs.runVMTests }}
129+
needs: binary-build-arm64
130+
uses: ./.github/workflows/tests-vmtests.yml
131+
with:
132+
hostArch: arm64
133+
hostDistro: ubuntu2404
134+
135+
tests-vmtests-imagecreator-azl3-amd64:
136+
name: VMTests suite image creator AZL3 AMD64
137+
if: ${{ inputs.runVMTests }}
138+
needs: binary-build-amd64
106139
uses: ./.github/workflows/tests-vmtests-imagecreator.yml
107140
with:
108141
hostArch: amd64

.github/workflows/tests-vmtests-imagecreator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
8989
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
9090
91-
- name: Install VM prerequisites for VM tests (Ubuntu 24.04)
91+
- name: Install prerequisites for VM tests (Ubuntu 24.04)
9292
if: inputs.hostDistro == 'ubuntu2404'
9393
run: |
9494
set -eux

.github/workflows/tests-vmtests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
134134
pushd ./repo/test/vmtests
135135
136-
sudo make test \
136+
sudo make test-imagecustomizer \
137137
IMAGE_CUSTOMIZER_CONTAINER_TAG="$CONTAINER_TAG" \
138138
CORE_EFI_AZL2="../../../azl-core-efi-2.0/image.vhdx" \
139139
CORE_EFI_AZL3="../../../azl-core-efi-3.0/image.vhdx" \

test/vmtests/vmtests/README_imagecreator_tests.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ The Image Creator tests create new Azure Linux images from scratch using the Ima
2323

2424
- `test_create_image_efi_qcow_output()` - Creates a QCOW2 image with EFI boot
2525
- `test_create_image_efi_raw_output()` - Creates a RAW image with EFI boot
26-
- `test_create_image_efi_vhd_output()` - Creates a VHD image with EFI boot
27-
- `test_create_image_efi_vhdx_output()` - Creates a VHDX image with EFI boot
2826

2927
## Configuration
3028

0 commit comments

Comments
 (0)