Skip to content

os_e2e_schedule

os_e2e_schedule #35

name: os_e2e_schedule
on:
# refer: https://crontab.guru/examples.html
# At 00:00 on every saturday(Beijing Time).
workflow_dispatch:
schedule:
- cron: '0 8 * * 6'
env:
VSPHERE_USER: ${{ secrets.VSPHERE_USER }}
VSPHERE_PASSWD: ${{ secrets.VSPHERE_PASSWD }}
AMD_ROOT_PASSWORD: ${{ secrets.AMD_ROOT_PASSWORD }}
KYLIN_VM_PASSWORD: ${{ secrets.KYLIN_VM_PASSWORD }}
jobs:
build-push-for-e2e:

Check failure on line 17 in .github/workflows/os_e2e_schedule.yaml

View workflow run for this annotation

GitHub Actions / os_e2e_schedule

Invalid workflow file

The workflow is not valid. .github/workflows/os_e2e_schedule.yaml (Line: 17, Col: 3): Error calling workflow 'KubeKyrie/kubean/.github/workflows/build-push-for-e2e.yml@8d18fa733b76860a791153cc12d229154feeee04'. The nested job 'build-push-for-e2e' is requesting 'packages: write', but is only allowed 'packages: read'.
uses: ./.github/workflows/build-push-for-e2e.yml
schedule_os_e2e:
needs: build-push-for-e2e
runs-on: [self-hosted, online]
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: 1.22.4
- name: os_compitable_e2e_schedule
run: |
CONTAINER_TAG="$(git describe --tags --abbrev=8 --dirty)-e2e"
HELM_CHART_VERSION=`echo ${CONTAINER_TAG}|awk -F "-" '{print $1 }'`
TAG_SECOND_PART=`echo ${CONTAINER_TAG}|awk -F "-" '{print $2 }'`
if [[ ${TAG_SECOND_PART} =~ rc[0-9]+ ]];then
HELM_CHART_VERSION=`echo ${CONTAINER_TAG}|awk -F "-" '{print $1"-"$2 }'`
fi
echo ${{ runner.name }}
echo ${{ github.workspace }}
echo "${HELM_CHART_VERSION}"
echo "${CONTAINER_TAG}"
bash hack/e2e.sh "${HELM_CHART_VERSION}" "${CONTAINER_TAG}" ${{ runner.name }} "${VSPHERE_USER}" "${VSPHERE_PASSWD}" "${AMD_ROOT_PASSWORD}" "${KYLIN_VM_PASSWORD}" "COMPABILITY"