add scriptless e2e test for Test_Ubuntu2204_CustomCATrust #17976
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: Validate Components | |
on: pull_request | |
jobs: | |
cue: | |
runs-on: ubuntu-24.04 | |
environment: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.22' | |
- name: Install cue | |
run: | | |
go version | |
GOPATH="$(go env | grep GOPATH | cut -d= -f2 | tr -d '"')" | |
export PATH="$PATH:$GOPATH/bin" | |
pushd /tmp | |
GO111MODULE=on go install cuelang.org/go/cmd/cue@latest | |
popd | |
- name: Validate components.json conforms to cue schema | |
run: | | |
GOPATH="$(go env | grep GOPATH | cut -d= -f2 | tr -d '"')" | |
export PATH="$PATH:$GOPATH/bin" | |
cue vet -c ./schemas/components.cue ./parts/common/components.json | |
cue eval ./schemas/components.cue ./parts/common/components.json | |
- name: Validate windows_settings.json conforms to cue schema | |
run: | | |
GOPATH="$(go env | grep GOPATH | cut -d= -f2 | tr -d '"')" | |
export PATH="$PATH:$GOPATH/bin" | |
cue vet -c ./schemas/windows_settings.cue ./vhdbuilder/packer/windows/windows_settings.json | |
cue eval ./schemas/windows_settings.cue ./vhdbuilder/packer/windows/windows_settings.json | |