| # Copyright (c) 2020 Intel Corp. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| name: Publish commit for daily testing |
| |
| on: |
| schedule: |
| - cron: '50 22 * * *' |
| push: |
| branches: |
| - refs/tags/* |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| get_version: |
| runs-on: ubuntu-24.04 |
| if: github.repository == 'zephyrproject-rtos/zephyr' |
| |
| steps: |
| - name: Configure AWS Credentials |
| uses: aws-actions/configure-aws-credentials@b47578312673ae6fa5b5096b330d9fbac3d116df # v4.2.1 |
| with: |
| aws-access-key-id: ${{ vars.AWS_TESTING_ACCESS_KEY_ID }} |
| aws-secret-access-key: ${{ secrets.AWS_TESTING_SECRET_ACCESS_KEY }} |
| aws-region: us-east-1 |
| |
| - name: checkout |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
| with: |
| fetch-depth: 0 |
| |
| - name: Set up Python |
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 |
| with: |
| python-version: 3.12 |
| cache: pip |
| cache-dependency-path: scripts/requirements-actions.txt |
| |
| - name: Install Python packages |
| run: | |
| pip install -r scripts/requirements-actions.txt --require-hashes |
| |
| - name: Upload to AWS S3 |
| run: | |
| python3 scripts/ci/version_mgr.py --update . |
| aws s3 cp versions.json s3://testing.zephyrproject.org/daily_tests/versions.json |