Skip to content

Commit 510e24a

Browse files
committed
24.06 release
1 parent b073814 commit 510e24a

File tree

820 files changed

+35931
-17124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

820 files changed

+35931
-17124
lines changed

.clang-format

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AlignEscapedNewlines: Left
88
AlignOperands: true
99
AlignTrailingComments: true
1010
AllowAllParametersOfDeclarationOnNextLine: true
11-
AllowShortBlocksOnASingleLine: true
11+
AllowShortBlocksOnASingleLine: Empty
1212
AllowShortCaseLabelsOnASingleLine: true
1313
AllowShortFunctionsOnASingleLine: All
1414
AllowShortIfStatementsOnASingleLine: true
@@ -72,6 +72,7 @@ IndentCaseLabels: true
7272
IndentPPDirectives: None
7373
IndentWidth: 2
7474
IndentWrappedFunctionNames: false
75+
InsertBraces: true
7576
JavaScriptQuotes: Leave
7677
JavaScriptWrapImports: true
7778
KeepEmptyLinesAtTheStartOfBlocks: false

.github/actions/download-artifacts/action.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Build Nightly release package
2+
3+
concurrency:
4+
group: ci-nightly-release-on-${{ github.event_name }}-from-${{ github.ref_name }}
5+
cancel-in-progress: true
6+
7+
on:
8+
workflow_dispatch:
9+
schedule:
10+
- cron: '0 23 * * *' # Nightly at 11:00 PM
11+
12+
jobs:
13+
build-and-test:
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
platform:
18+
- linux
19+
- linux-aarch64
20+
target-device:
21+
- gpu
22+
- cpu
23+
upload-enabled:
24+
- true
25+
- false
26+
uses:
27+
./.github/workflows/gh-build-and-test.yml
28+
with:
29+
target-device: ${{ matrix.target-device }}
30+
platform: ${{ matrix.platform }}
31+
build-type: release
32+
upload-enabled: ${{ matrix.upload-enabled }}
33+
dependencies-workflow: "ci-gh-nightly-release.yml"
34+
secrets: inherit

.github/workflows/ci-gh-release.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build Release package
2+
3+
concurrency:
4+
group: ci-nightly-release-on-${{ github.event_name }}-from-${{ github.ref_name }}
5+
cancel-in-progress: true
6+
7+
on:
8+
workflow_dispatch:
9+
push:
10+
branches:
11+
- "pull-request/[0-9]+"
12+
- "cpp-branch-*"
13+
- "main"
14+
15+
jobs:
16+
build-and-test:
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
platform:
21+
- linux
22+
- linux-aarch64
23+
target-device:
24+
- gpu
25+
- cpu
26+
upload-enabled:
27+
- false
28+
exclude:
29+
- platform: linux-aarch64
30+
target-device: gpu
31+
uses:
32+
./.github/workflows/gh-build-and-test.yml
33+
with:
34+
target-device: ${{ matrix.target-device }}
35+
platform: ${{ matrix.platform }}
36+
build-type: release
37+
upload-enabled: ${{ matrix.upload-enabled }}
38+
dependencies-workflow: "ci-gh-nightly-release.yml"
39+
secrets: inherit

.github/workflows/ci-gh.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)