Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/macos-ci-build-and-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ jobs:
xcode_version: ${{ matrix.xcode_version }}
use_cache: true

- uses: actions/cache@v3
id: onnx-node-tests-cache
with:
path: ${{ github.workspace }}/js/test/
key: onnxnodetests-${{ hashFiles('js/scripts/prepare-onnx-node-tests.ts') }}

- name: Setup environment variables
shell: bash
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/windows_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ jobs:
java-version: '17'
architecture: x64

- uses: actions/cache@v3
id: onnx-node-tests-cache
with:
path: ${{ github.workspace }}/js/test/
key: onnxnodetests-${{ hashFiles('js/scripts/prepare-onnx-node-tests.ts') }}

- name: API Documentation Check and generate
run: |
set ORT_DOXY_SRC=${{ github.workspace }}
Expand Down Expand Up @@ -132,4 +138,4 @@ jobs:
DocUpdateNeeded: false
ONNXRUNTIME_TEST_GPU_DEVICE_ID: '0'
AZCOPY_AUTO_LOGIN_TYPE: MSI
AZCOPY_MSI_CLIENT_ID: 63b63039-6328-442f-954b-5a64d124e5b4
AZCOPY_MSI_CLIENT_ID: 63b63039-6328-442f-954b-5a64d124e5b4
8 changes: 7 additions & 1 deletion .github/workflows/windows_webgpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ jobs:
shell: cmd
working-directory: ${{ github.workspace }}

- uses: actions/cache@v3
id: onnx-node-tests-cache
with:
path: ${{ github.workspace }}/js/test/
key: onnxnodetests-${{ hashFiles('js/scripts/prepare-onnx-node-tests.ts') }}

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
Expand Down Expand Up @@ -259,4 +265,4 @@ jobs:
- name: Validate C# native delegates
run: python tools\ValidateNativeDelegateAttributes.py
shell: cmd
working-directory: ${{ github.workspace }}\csharp
working-directory: ${{ github.workspace }}\csharp
8 changes: 7 additions & 1 deletion .github/workflows/windows_x64_debug_build_x64_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ jobs:
run: |
nuget restore ${{ github.workspace }}\packages.config -PackagesDirectory ${{ github.workspace }}\build\Debug -ConfigFile ${{ github.workspace }}\NuGet.config

- uses: actions/cache@v3
id: onnx-node-tests-cache
with:
path: ${{ github.workspace }}/js/test/
key: onnxnodetests-${{ hashFiles('js/scripts/prepare-onnx-node-tests.ts') }}

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
Expand Down Expand Up @@ -126,4 +132,4 @@ jobs:
env:
OrtPackageId: Microsoft.ML.OnnxRuntime
OnnxRuntimeBuildDirectory: ${{ github.workspace }}\build
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true'
6 changes: 6 additions & 0 deletions .github/workflows/windows_x64_release_build_x64_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ jobs:
run: |
nuget restore ${{ github.workspace }}\packages.config -PackagesDirectory ${{ github.workspace }}\build\RelWithDebInfo -ConfigFile ${{ github.workspace }}\NuGet.config

- uses: actions/cache@v3
id: onnx-node-tests-cache
with:
path: ${{ github.workspace }}/js/test/
key: onnxnodetests-${{ hashFiles('js/scripts/prepare-onnx-node-tests.ts') }}

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ jobs:
run: |
nuget restore ${{ github.workspace }}\packages.config -PackagesDirectory ${{ github.workspace }}\build\RelWithDebInfo -ConfigFile ${{ github.workspace }}\NuGet.config

- uses: actions/cache@v3
id: onnx-node-tests-cache
with:
path: ${{ github.workspace }}/js/test/
key: onnxnodetests-${{ hashFiles('js/scripts/prepare-onnx-node-tests.ts') }}

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
Expand Down Expand Up @@ -122,4 +128,4 @@ jobs:
env:
OrtPackageId: Microsoft.ML.OnnxRuntime
OnnxRuntimeBuildDirectory: ${{ github.workspace }}\build
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true'
Loading