Skip to content

Commit

Permalink
24.06 release
Browse files Browse the repository at this point in the history
  • Loading branch information
manopapad committed Jul 3, 2024
1 parent b073814 commit 510e24a
Show file tree
Hide file tree
Showing 820 changed files with 35,931 additions and 17,124 deletions.
3 changes: 2 additions & 1 deletion .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ AlignEscapedNewlines: Left
AlignOperands: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: true
AllowShortBlocksOnASingleLine: Empty
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: true
Expand Down Expand Up @@ -72,6 +72,7 @@ IndentCaseLabels: true
IndentPPDirectives: None
IndentWidth: 2
IndentWrappedFunctionNames: false
InsertBraces: true
JavaScriptQuotes: Leave
JavaScriptWrapImports: true
KeepEmptyLinesAtTheStartOfBlocks: false
Expand Down
48 changes: 0 additions & 48 deletions .github/actions/download-artifacts/action.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/ci-gh-nightly-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build Nightly release package

concurrency:
group: ci-nightly-release-on-${{ github.event_name }}-from-${{ github.ref_name }}
cancel-in-progress: true

on:
workflow_dispatch:
schedule:
- cron: '0 23 * * *' # Nightly at 11:00 PM

jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
platform:
- linux
- linux-aarch64
target-device:
- gpu
- cpu
upload-enabled:
- true
- false
uses:
./.github/workflows/gh-build-and-test.yml
with:
target-device: ${{ matrix.target-device }}
platform: ${{ matrix.platform }}
build-type: release
upload-enabled: ${{ matrix.upload-enabled }}
dependencies-workflow: "ci-gh-nightly-release.yml"
secrets: inherit
39 changes: 39 additions & 0 deletions .github/workflows/ci-gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build Release package

concurrency:
group: ci-nightly-release-on-${{ github.event_name }}-from-${{ github.ref_name }}
cancel-in-progress: true

on:
workflow_dispatch:
push:
branches:
- "pull-request/[0-9]+"
- "cpp-branch-*"
- "main"

jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
platform:
- linux
- linux-aarch64
target-device:
- gpu
- cpu
upload-enabled:
- false
exclude:
- platform: linux-aarch64
target-device: gpu
uses:
./.github/workflows/gh-build-and-test.yml
with:
target-device: ${{ matrix.target-device }}
platform: ${{ matrix.platform }}
build-type: release
upload-enabled: ${{ matrix.upload-enabled }}
dependencies-workflow: "ci-gh-nightly-release.yml"
secrets: inherit
28 changes: 0 additions & 28 deletions .github/workflows/ci-gh.yml

This file was deleted.

Loading

0 comments on commit 510e24a

Please sign in to comment.