Skip to content

Commit a503303

Browse files
Merge remote-tracking branch 'origin/main' into feat/secure-communication
Signed-off-by: Markus Hentsch <[email protected]>
2 parents c9984db + 1e24ed4 commit a503303

File tree

95 files changed

+4225
-2059
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+4225
-2059
lines changed

.github/workflows/check-gx-scs-v2.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/check-pco-prod1-v2.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/check-pco-prod2-v2.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/check-pco-prod3-v2.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/check-pco-prod4-v2.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/check-regio-a-v2.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/check-wavestack-v2.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/lint-golang.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Check Go syntax
2+
3+
on:
4+
push:
5+
paths:
6+
- 'Tests/kaas/kaas-sonobuoy-tests/**/*.go'
7+
- .github/workflows/lint-go.yml
8+
9+
jobs:
10+
lint-go-syntax:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Go
16+
uses: actions/setup-go@v4
17+
with:
18+
go-version: '1.23'
19+
20+
# Install golangci-lint
21+
- name: Install golangci-lint
22+
run: |
23+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0
24+
25+
# Run golangci-lint
26+
- name: Run golangci-lint
27+
working-directory: Tests/kaas/kaas-sonobuoy-tests
28+
run: golangci-lint run ./... -v

.github/workflows/scs-compliance-check-with-application-credential.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
EOF
3535
- name: "Clean up any lingering resources from previous run"
3636
if: ${{ inputs.layer == 'iaas' && inputs.version == 'v4' }}
37-
run: "cd /scs-compliance && ./cleanup.py -c ${{ inputs.cloud }} --prefix _scs-"
37+
run: "cd /scs-compliance && ./cleanup.py -c ${{ inputs.cloud }} --prefix _scs- --ipaddr 10.1.0. --debug"
3838
- name: "Run scs-compliance-check"
3939
run: "cd /scs-compliance && ./scs-compliance-check.py scs-compatible-${{ inputs.layer }}.yaml --version ${{ inputs.version }} -o result.yaml -s ${{ inputs.cloud }} -a os_cloud=${{ inputs.cloud }}"
4040
- name: "Upload results"

.github/workflows/scs-compliance-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
EOF
3535
- name: "Clean up any lingering resources from previous run"
3636
if: ${{ inputs.layer == 'iaas' && inputs.version == 'v4' }}
37-
run: "cd /scs-compliance && ./cleanup.py -c ${{ inputs.cloud }} --prefix _scs-"
37+
run: "cd /scs-compliance && ./cleanup.py -c ${{ inputs.cloud }} --prefix _scs- --ipaddr 10.1.0. --debug"
3838
- name: "Run scs-compliance-check"
3939
run: "cd /scs-compliance && ./scs-compliance-check.py scs-compatible-${{ inputs.layer }}.yaml --version ${{ inputs.version }} -o result.yaml -s ${{ inputs.cloud }} -a os_cloud=${{ inputs.cloud }}"
4040
- name: "Upload results"

0 commit comments

Comments
 (0)