build(deps): bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [bazel-contrib/setup-bazel](https://github.com/bazel-contrib/setup-bazel). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `bazel-contrib/setup-bazel` from 0.15.0 to 0.18.0 - [Release notes](https://github.com/bazel-contrib/setup-bazel/releases) - [Commits](https://github.com/bazel-contrib/setup-bazel/compare/0.15.0...0.18.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: bazel-contrib/setup-bazel dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Mizux Seiha
parent
b21a132690
commit
4336f9f3ae
4
.github/workflows/amd64_linux_bazel.yml
vendored
4
.github/workflows/amd64_linux_bazel.yml
vendored
@@ -63,7 +63,7 @@ jobs:
|
||||
sed -i -e 's/\(DEFAULT_PYTHON =\) "3.[0-9]\+"/\1 "${{matrix.python.version}}"/g' MODULE.bazel
|
||||
cat MODULE.bazel
|
||||
- name: Restore bazel cache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: bazel-cache-restore
|
||||
with:
|
||||
key: ${{env.cache-name}}
|
||||
@@ -73,7 +73,7 @@ jobs:
|
||||
- name: Test
|
||||
run: bazel --output_user_root=${{env.cache-root}} test --config=ci //ortools/... //examples/...
|
||||
- name: Save Bazel cache for branch main even when Build and Test fail.
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
# https://docs.github.com/en/actions/reference/workflows-and-actions/dependency-caching#restrictions-for-accessing-a-cache
|
||||
if: always() && github.ref == 'refs/heads/main'
|
||||
with:
|
||||
|
||||
@@ -50,13 +50,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -64,7 +64,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -109,13 +109,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -123,7 +123,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_linux_cmake_cpp.yml
vendored
12
.github/workflows/amd64_linux_cmake_cpp.yml
vendored
@@ -42,13 +42,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -56,7 +56,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -99,13 +99,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -113,7 +113,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_linux_cmake_dotnet.yml
vendored
12
.github/workflows/amd64_linux_cmake_dotnet.yml
vendored
@@ -48,13 +48,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -62,7 +62,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -107,13 +107,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -121,7 +121,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_linux_cmake_glpk_on.yml
vendored
12
.github/workflows/amd64_linux_cmake_glpk_on.yml
vendored
@@ -50,13 +50,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -64,7 +64,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -109,13 +109,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -123,7 +123,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_linux_cmake_java.yml
vendored
12
.github/workflows/amd64_linux_cmake_java.yml
vendored
@@ -37,13 +37,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -51,7 +51,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -95,13 +95,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -109,7 +109,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_linux_cmake_python.yml
vendored
12
.github/workflows/amd64_linux_cmake_python.yml
vendored
@@ -52,13 +52,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -66,7 +66,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -110,13 +110,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -124,7 +124,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_linux_cmake_scip_off.yml
vendored
12
.github/workflows/amd64_linux_cmake_scip_off.yml
vendored
@@ -50,13 +50,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -64,7 +64,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -109,13 +109,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -123,7 +123,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
4
.github/workflows/amd64_macos_bazel.yml
vendored
4
.github/workflows/amd64_macos_bazel.yml
vendored
@@ -57,7 +57,7 @@ jobs:
|
||||
sed -i '' -e 's/\(DEFAULT_PYTHON =\) "3.[0-9]*"/\1 "${{matrix.python.version}}"/g' MODULE.bazel
|
||||
cat MODULE.bazel
|
||||
- name: Restore bazel cache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: bazel-cache-restore
|
||||
with:
|
||||
key: ${{env.cache-name}}
|
||||
@@ -67,7 +67,7 @@ jobs:
|
||||
- name: Test
|
||||
run: bazel --output_user_root=${{env.cache-root}} test --config=ci //ortools/... //examples/...
|
||||
- name: Save Bazel cache for branch main even when Build and Test fail.
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
# https://docs.github.com/en/actions/reference/workflows-and-actions/dependency-caching#restrictions-for-accessing-a-cache
|
||||
if: always() && github.ref == 'refs/heads/main'
|
||||
with:
|
||||
|
||||
12
.github/workflows/amd64_macos_cmake_cpp.yml
vendored
12
.github/workflows/amd64_macos_cmake_cpp.yml
vendored
@@ -39,13 +39,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -53,7 +53,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -96,13 +96,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -110,7 +110,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_macos_cmake_dotnet.yml
vendored
12
.github/workflows/amd64_macos_cmake_dotnet.yml
vendored
@@ -47,13 +47,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -61,7 +61,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -105,13 +105,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -119,7 +119,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_macos_cmake_java.yml
vendored
12
.github/workflows/amd64_macos_cmake_java.yml
vendored
@@ -43,13 +43,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -57,7 +57,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -101,13 +101,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -115,7 +115,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/amd64_macos_cmake_python.yml
vendored
12
.github/workflows/amd64_macos_cmake_python.yml
vendored
@@ -57,13 +57,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -71,7 +71,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -115,13 +115,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -129,7 +129,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
4
.github/workflows/amd64_windows_bazel.yml
vendored
4
.github/workflows/amd64_windows_bazel.yml
vendored
@@ -52,7 +52,7 @@ jobs:
|
||||
- name: Check Bazel
|
||||
run: bazel version
|
||||
- name: Restore bazel cache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: bazel-cache-restore
|
||||
with:
|
||||
key: ${{env.cache-name}}
|
||||
@@ -62,7 +62,7 @@ jobs:
|
||||
- name: Test
|
||||
run: bazel --output_user_root=${{env.cache-root}} test --config=ci //ortools/... //examples/...
|
||||
- name: Save Bazel cache for branch main even when Build and Test fail.
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
# https://docs.github.com/en/actions/reference/workflows-and-actions/dependency-caching#restrictions-for-accessing-a-cache
|
||||
if: always() && github.ref == 'refs/heads/main'
|
||||
with:
|
||||
|
||||
@@ -33,12 +33,12 @@ jobs:
|
||||
|
||||
# CONFIGURING CACHES
|
||||
- name: Cache CMake dependency source code
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Cache CMake dependency build
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: |
|
||||
|
||||
@@ -38,12 +38,12 @@ jobs:
|
||||
|
||||
# CONFIGURING CACHES
|
||||
- name: Cache CMake dependency source code
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Cache CMake dependency build
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: |
|
||||
|
||||
@@ -57,12 +57,12 @@ jobs:
|
||||
|
||||
# CONFIGURING CACHES
|
||||
- name: Cache CMake dependency source code
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Cache CMake dependency build
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: |
|
||||
|
||||
@@ -49,12 +49,12 @@ jobs:
|
||||
|
||||
# CONFIGURING CACHES
|
||||
- name: Cache CMake dependency source code
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Cache CMake dependency build
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: |
|
||||
|
||||
4
.github/workflows/arm64_macos_bazel.yml
vendored
4
.github/workflows/arm64_macos_bazel.yml
vendored
@@ -57,7 +57,7 @@ jobs:
|
||||
sed -i '' -e 's/\(DEFAULT_PYTHON =\) "3.[0-9]*"/\1 "${{matrix.python.version}}"/g' MODULE.bazel
|
||||
cat MODULE.bazel
|
||||
- name: Restore bazel cache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: bazel-cache-restore
|
||||
with:
|
||||
key: ${{env.cache-name}}
|
||||
@@ -67,7 +67,7 @@ jobs:
|
||||
- name: Test
|
||||
run: bazel --output_user_root=${{env.cache-root}} test --config=ci //ortools/... //examples/...
|
||||
- name: Save Bazel cache for branch main even when Build and Test fail.
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
# https://docs.github.com/en/actions/reference/workflows-and-actions/dependency-caching#restrictions-for-accessing-a-cache
|
||||
if: always() && github.ref == 'refs/heads/main'
|
||||
with:
|
||||
|
||||
12
.github/workflows/arm64_macos_cmake_cpp.yml
vendored
12
.github/workflows/arm64_macos_cmake_cpp.yml
vendored
@@ -39,13 +39,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -53,7 +53,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -96,13 +96,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -110,7 +110,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/arm64_macos_cmake_dotnet.yml
vendored
12
.github/workflows/arm64_macos_cmake_dotnet.yml
vendored
@@ -47,13 +47,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -61,7 +61,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -105,13 +105,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -119,7 +119,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/arm64_macos_cmake_java.yml
vendored
12
.github/workflows/arm64_macos_cmake_java.yml
vendored
@@ -43,13 +43,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -57,7 +57,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -101,13 +101,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -115,7 +115,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
12
.github/workflows/arm64_macos_cmake_python.yml
vendored
12
.github/workflows/arm64_macos_cmake_python.yml
vendored
@@ -57,13 +57,13 @@ jobs:
|
||||
|
||||
# RESTORING CACHES
|
||||
- name: Restore CMake dependency source code
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_src_restore
|
||||
with:
|
||||
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
- name: Restore CMake dependency build
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: deps_build_restore
|
||||
with:
|
||||
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
|
||||
@@ -71,7 +71,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-build
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Restore CCache
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
id: ccache_restore
|
||||
with:
|
||||
key: ${{env.ccache_key}}-${{github.sha}}
|
||||
@@ -115,13 +115,13 @@ jobs:
|
||||
# SAVING CACHES
|
||||
- name: Save CCache
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.ccache_restore.outputs.cache-primary-key}}
|
||||
path: ${{env.CCACHE_DIR}}
|
||||
- name: Save CMake dependency build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_build_restore.outputs.cache-primary-key}}
|
||||
path: |
|
||||
@@ -129,7 +129,7 @@ jobs:
|
||||
${{github.workspace}}/build/_deps/*-subbuild
|
||||
- name: Save CMake dependency source code
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
key: ${{steps.deps_src_restore.outputs.cache-primary-key}}
|
||||
path: ${{github.workspace}}/build/_deps/*-src
|
||||
|
||||
2
.github/workflows/presubmit.yml
vendored
2
.github/workflows/presubmit.yml
vendored
@@ -40,7 +40,7 @@ jobs:
|
||||
- uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: ${{env.PYTHON_VERSION}}
|
||||
- uses: bazel-contrib/setup-bazel@0.15.0
|
||||
- uses: bazel-contrib/setup-bazel@0.18.0
|
||||
- name: Build
|
||||
run: bazel test --config=ci //ortools/...
|
||||
shell: bash
|
||||
|
||||
Reference in New Issue
Block a user