16
TEST / Job 1 (rpi-6.12.y, cicd.any) (push) Successful in 2s
TEST / Job 1 (rpi-6.18.y, cicd.any) (push) Successful in 1s
TEST / job2 (push) Successful in 3s

This commit is contained in:
Cantibra
2026-05-06 08:37:34 +02:00
parent 7422662c7b
commit bde4f89e51
2 changed files with 18 additions and 10 deletions
+13
View File
@@ -23,6 +23,19 @@ jobs:
/usr/bin/echo "Version: ${VERSION}" /usr/bin/echo "Version: ${VERSION}"
/usr/bin/echo "Branch: ${{ matrix.branch }}" /usr/bin/echo "Branch: ${{ matrix.branch }}"
/usr/bin/echo "Runner: ${{ matrix.runner }}" /usr/bin/echo "Runner: ${{ matrix.runner }}"
- name: Step 1
env:
VERSION: ${{ steps.environment.outputs.version }}
run: |
/usr/bin/fallocate -l 64M "./test-${VERSION}.tmp"
- name: Step 3
uses: https://github.com/christopherhx/gitea-upload-artifact@v7
with:
name: test-${{ steps.environment.outputs.version }}.tmp
path: ./test-${{ steps.environment.outputs.version }}.tmp
if-no-files-found: error
overwrite: true
archive: false
job2: job2:
needs: needs:
- job1 - job1
+5 -10
View File
@@ -1,4 +1,4 @@
name: Step1 name: Step 1
on: on:
workflow_call: workflow_call:
inputs: inputs:
@@ -25,12 +25,7 @@ jobs:
/usr/bin/echo "Runner: ${{ matrix.runner }}" /usr/bin/echo "Runner: ${{ matrix.runner }}"
/usr/bin/echo "Version: ${{ inputs.VERSION }}" /usr/bin/echo "Version: ${{ inputs.VERSION }}"
- name: Step 2 - name: Step 2
run: | uses: https://gitea.com/actions/download-artifact@v3-node20
/usr/bin/echo "Kernel: ${{ matrix.kernel }}" with:
/usr/bin/echo "Runner: ${{ matrix.runner }}" name: test-${{ inputs.VERSION }}.tmp
/usr/bin/echo "Version: ${{ inputs.VERSION }}" skip-decompress: true
- name: Step 3
run: |
/usr/bin/echo "Kernel: ${{ matrix.kernel }}"
/usr/bin/echo "Runner: ${{ matrix.runner }}"
/usr/bin/echo "Version: ${{ inputs.VERSION }}"