mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-28 11:44:38 +00:00
workflows: linting: Fix incorrect properties
These properties are currently invalid, so either fix, or remove them Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
parent
9113606d45
commit
d4bd314d52
2
.github/workflows/cargo-deny-runner.yaml
vendored
2
.github/workflows/cargo-deny-runner.yaml
vendored
@ -24,7 +24,7 @@ jobs:
|
|||||||
run: bash cargo-deny-generator.sh
|
run: bash cargo-deny-generator.sh
|
||||||
working-directory: ./.github/cargo-deny-composite-action/
|
working-directory: ./.github/cargo-deny-composite-action/
|
||||||
env:
|
env:
|
||||||
GOPATH: ${{ runner.workspace }}/kata-containers
|
GOPATH: ${{ github.workspace }}/kata-containers
|
||||||
- name: Run Action
|
- name: Run Action
|
||||||
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}
|
||||||
uses: ./.github/cargo-deny-composite-action
|
uses: ./.github/cargo-deny-composite-action
|
||||||
|
1
.github/workflows/ci-weekly.yaml
vendored
1
.github/workflows/ci-weekly.yaml
vendored
@ -83,4 +83,5 @@ jobs:
|
|||||||
commit-hash: ${{ inputs.commit-hash }}
|
commit-hash: ${{ inputs.commit-hash }}
|
||||||
pr-number: ${{ inputs.pr-number }}
|
pr-number: ${{ inputs.pr-number }}
|
||||||
target-branch: ${{ inputs.target-branch }}
|
target-branch: ${{ inputs.target-branch }}
|
||||||
|
tarball-suffix: -${{ inputs.tag }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
2
.github/workflows/docs-url-alive-check.yaml
vendored
2
.github/workflows/docs-url-alive-check.yaml
vendored
@ -16,7 +16,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
go-version: 1.22.2
|
go-version: 1.22.2
|
||||||
env:
|
env:
|
||||||
GOPATH: ${{ runner.workspace }}/kata-containers
|
GOPATH: ${{ github.workspace }}/kata-containers
|
||||||
- name: Set env
|
- name: Set env
|
||||||
run: |
|
run: |
|
||||||
echo "GOPATH=${{ github.workspace }}" >> "$GITHUB_ENV"
|
echo "GOPATH=${{ github.workspace }}" >> "$GITHUB_ENV"
|
||||||
|
@ -86,11 +86,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Install `bats`
|
- name: Install `bats`
|
||||||
run: bash tests/integration/kubernetes/gha-run.sh install-bats
|
run: bash tests/integration/kubernetes/gha-run.sh install-bats
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
run: bash tests/integration/kubernetes/gha-run.sh run-tests
|
run: bash tests/integration/kubernetes/gha-run.sh run-tests
|
||||||
|
|
||||||
- name: Collect artifacts ${{ matrix.vmm }}
|
- name: Collect artifacts ${{ matrix.vmm }}
|
||||||
if: always()
|
if: always()
|
||||||
run: bash tests/integration/kubernetes/gha-run.sh collect-artifacts
|
run: bash tests/integration/kubernetes/gha-run.sh collect-artifacts
|
||||||
@ -99,7 +99,7 @@ jobs:
|
|||||||
- name: Archive artifacts ${{ matrix.vmm }}
|
- name: Archive artifacts ${{ matrix.vmm }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: k8s-tests-${{ matrix.vmm }}-${{ matrix.snapshotter }}-${{ matrix.k8s }}-${{ matrix.instance }}-${{ inputs.tag }}
|
name: k8s-tests-${{ matrix.vmm }}-${{ matrix.snapshotter }}-${{ matrix.k8s }}-${{ inputs.tag }}
|
||||||
path: /tmp/artifacts
|
path: /tmp/artifacts
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
|
@ -21,6 +21,9 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: ""
|
default: ""
|
||||||
|
tarball-suffix:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Generate jobs for testing CoCo on non-TEE environments
|
# Generate jobs for testing CoCo on non-TEE environments
|
||||||
@ -40,7 +43,6 @@ jobs:
|
|||||||
DOCKER_REPO: ${{ inputs.repo }}
|
DOCKER_REPO: ${{ inputs.repo }}
|
||||||
DOCKER_TAG: ${{ inputs.tag }}
|
DOCKER_TAG: ${{ inputs.tag }}
|
||||||
GH_PR_NUMBER: ${{ inputs.pr-number }}
|
GH_PR_NUMBER: ${{ inputs.pr-number }}
|
||||||
KATA_HOST_OS: ${{ matrix.host_os }}
|
|
||||||
KATA_HYPERVISOR: ${{ matrix.vmm }}
|
KATA_HYPERVISOR: ${{ matrix.vmm }}
|
||||||
# Some tests rely on that variable to run (or not)
|
# Some tests rely on that variable to run (or not)
|
||||||
KBS: "true"
|
KBS: "true"
|
||||||
|
1
.github/workflows/run-kata-coco-tests.yaml
vendored
1
.github/workflows/run-kata-coco-tests.yaml
vendored
@ -288,7 +288,6 @@ jobs:
|
|||||||
DOCKER_REPO: ${{ inputs.repo }}
|
DOCKER_REPO: ${{ inputs.repo }}
|
||||||
DOCKER_TAG: ${{ inputs.tag }}
|
DOCKER_TAG: ${{ inputs.tag }}
|
||||||
GH_PR_NUMBER: ${{ inputs.pr-number }}
|
GH_PR_NUMBER: ${{ inputs.pr-number }}
|
||||||
KATA_HOST_OS: ${{ matrix.host_os }}
|
|
||||||
KATA_HYPERVISOR: ${{ matrix.vmm }}
|
KATA_HYPERVISOR: ${{ matrix.vmm }}
|
||||||
# Some tests rely on that variable to run (or not)
|
# Some tests rely on that variable to run (or not)
|
||||||
KBS: "true"
|
KBS: "true"
|
||||||
|
Loading…
Reference in New Issue
Block a user