-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,141 changed files
with
29,877 additions
and
10,750 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,20 +33,26 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
clean: false | ||
submodules: recursive | ||
- if: runner.os == 'macOS' | ||
name: Setup nodejs version | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .node-version | ||
- if: runner.os != 'Linux' | ||
run: npm install -g [email protected] && corepack --version | ||
- name: Build Script Setup | ||
run: ./run --help || (git clean -ffdx && ./run --help) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || (github.ref == 'refs/heads/develop') || inputs.clean_build_required)" | ||
name: Clean before | ||
run: ./run git-clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: ./run changelog-check | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: "(always()) && (contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
- if: "(always()) && (contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || (github.ref == 'refs/heads/develop') || inputs.clean_build_required)" | ||
name: Clean after | ||
run: ./run git-clean | ||
env: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,10 @@ on: | |
- cron: 0 0 * * * | ||
workflow_dispatch: | ||
inputs: | ||
bench-name: | ||
description: Name (regex) of the benchmark to run. | ||
required: false | ||
type: string | ||
just-check: | ||
description: If set, benchmarks will be only checked to run correctly, not to measure actual performance. | ||
required: true | ||
|
@@ -35,7 +39,13 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
clean: false | ||
submodules: recursive | ||
- if: runner.os == 'macOS' | ||
name: Setup nodejs version | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .node-version | ||
- if: runner.os != 'Linux' | ||
run: npm install -g [email protected] && corepack --version | ||
- name: Build Script Setup | ||
run: ./run --help || (git clean -ffdx && ./run --help) | ||
env: | ||
|
@@ -48,6 +58,11 @@ jobs: | |
- run: ./run backend benchmark runtime | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Upload benchmark results | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: benchmark-results.xml | ||
path: engine/runtime-benchmarks/bench-report.xml | ||
- if: (always()) | ||
name: Clean after | ||
run: ./run git-clean | ||
|
@@ -57,5 +72,6 @@ jobs: | |
GRAAL_EDITION: GraalVM CE | ||
timeout-minutes: 240 | ||
env: | ||
ENSO_BUILD_BENCH_NAME: ${{ inputs.bench-name }} | ||
ENSO_BUILD_MINIMAL_RUN: ${{ true == inputs.just-check }} | ||
ENSO_BUILD_SKIP_VERSION_CHECK: "true" |
Oops, something went wrong.