Skip to content

Commit

Permalink
pes
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Aug 12, 2023
1 parent 7a1ce7a commit c7d28da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unstable_amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
needs: init-artifacts
runs-on: ubuntu-20.04
outputs:
job-strategy-matrix: ${{ steps.generate.outputs.job-strategy-matrix }}
packages: ${{ steps.generate.outputs.packages }}
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -46,15 +46,15 @@ jobs:
run: |
JOB_STRATEGY_MATRIX=$(./.ci/get_build_matrix.sh unstable amd64)
cat /tmp/log.txt
echo "::set-output name=job-strategy-matrix::$JOB_STRATEGY_MATRIX"
echo "::set-output name=packages::$JOB_STRATEGY_MATRIX"
build-job:
needs: generate-jobs
runs-on: ubuntu-20.04
timeout-minutes: 360 # 6 hour timeout
strategy:
matrix:
job: ${{ fromJson(needs.generate-job-strategy-matrix.outputs.job-strategy-matrix) }}
job: ${{ fromJson(needs.generate-jobs.outputs.packages) }}
max-parallel: 1 # Run jobs serially
steps:
- name: Load artifacts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unstable_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
needs: init-artifacts
runs-on: ubuntu-20.04
outputs:
job-strategy-matrix: ${{ steps.generate.outputs.job-strategy-matrix }}
packages: ${{ steps.generate.outputs.packages }}
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -45,15 +45,15 @@ jobs:
- id: generate
run: |
JOB_STRATEGY_MATRIX=$(./.ci/get_build_matrix.sh unstable arm64)
echo "::set-output name=job-strategy-matrix::$JOB_STRATEGY_MATRIX"
echo "::set-output name=packages::$JOB_STRATEGY_MATRIX"
build-job:
needs: generate-jobs
runs-on: ubuntu-20.04
timeout-minutes: 360 # 6 hour timeout
strategy:
matrix:
job: ${{ fromJson(needs.generate-job-strategy-matrix.outputs.job-strategy-matrix) }}
job: ${{ fromJson(needs.generate-jobs.outputs.packages) }}
max-parallel: 1 # Run jobs serially
steps:
- name: Load artifacts
Expand Down

0 comments on commit c7d28da

Please sign in to comment.