tool/fetch-release-artifacts: push to git the script in use for bundl… #809
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu | |
on: | |
push: | |
branches: [ release, next ] | |
pull_request: | |
branches: [ release, next ] | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
permissions: | |
id-token: write | |
contents: read | |
attestations: write | |
strategy: | |
matrix: | |
target-double: | |
- unknown-linux-gnu | |
target-platform: | |
- this | |
os: | |
- ubuntu-22.04 | |
- ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v4 | |
with: | |
path: out | |
key: cache.${{matrix.target-double}}.${{matrix.os}} | |
- uses: chetan/git-restore-mtime-action@v2 | |
- run: tool/build --verbose --no-run | |
- run: tool/test/all | |
- run: tool/build --verbose --no-build --no-run-perf | |
- run: tool/build --verbose --no-build --no-run-unit | |
- run: ls -al out/${{matrix.target-platform}}/Debug | |
- run: ls -al out/${{matrix.target-platform}}/Release |