Skip to content

Commit

Permalink
Allow update to unstable versions
Browse files Browse the repository at this point in the history
  • Loading branch information
plengauer authored Dec 16, 2024
1 parent c168e7d commit 8d29b04
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
3 changes: 2 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"automerge": true,
"automergeType": "pr"
"automergeType": "pr",
"ignoreUnstable": false
}
37 changes: 21 additions & 16 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -389,24 +389,10 @@ jobs:
path: performance.${{ matrix.tag_name }}.warmstart.list
retention-days: 1

join:
needs: [upgrade, system-upgrade, dependency, linux-shell, windows-shell, action] # , install-manual-user, install-manual-os # TODO if new dependencies break old package managers, since this test fetches old builds, we will never be able to merge again
performance-summary:
needs: performance
runs-on: ubuntu-latest
outputs:
success: ${{ steps.tests.outputs.success }}
steps:
- id: tests
run: echo "success=true" >> "$GITHUB_OUTPUT"

all:
if: ${{ always() }}
needs: [join]
runs-on: ubuntu-latest
steps:
- env:
SUCCESS: ${{ needs.join.outputs.success }}
run: |
[ "$SUCCESS" = 'true' ]
- uses: actions/download-artifact@v4
with:
pattern: 'performance.*.list'
Expand Down Expand Up @@ -435,3 +421,22 @@ jobs:
name: performance.png
path: performance.png
retention-days: 90

join:
needs: [upgrade, system-upgrade, dependency, linux-shell, windows-shell, action]
runs-on: ubuntu-latest
outputs:
success: ${{ steps.tests.outputs.success }}
steps:
- id: tests
run: echo "success=true" >> "$GITHUB_OUTPUT"

all:
if: ${{ always() }} # this is because we need this to fail and not skipped to avoid PRs getting merged without this passing
needs: join
runs-on: ubuntu-latest
steps:
- env:
SUCCESS: ${{ needs.join.outputs.success }}
run: |
[ "$SUCCESS" = 'true' ]

0 comments on commit 8d29b04

Please sign in to comment.