-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/AcademySoftwareFoundation/o…
…penexr into main_clusty Signed-off-by: Philippe Leprince <[email protected]>
- Loading branch information
Showing
47 changed files
with
716 additions
and
305 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 |
---|---|---|
@@ -1 +1 @@ | ||
7.0.2 | ||
7.1.1 |
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
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 |
---|---|---|
|
@@ -12,29 +12,23 @@ name: Bazel | |
|
||
on: | ||
push: | ||
branches-ignore: | ||
- RB-2.* | ||
tags-ignore: | ||
- v1.* | ||
- v2.* | ||
paths: | ||
- '**' | ||
- '!**.md' | ||
- '!website/**' | ||
- 'website/src/**' | ||
- '!src/wrappers/**' | ||
- '!.github/workflows/**' | ||
- '.github/workflows/bazel_build.yml' | ||
pull_request: | ||
branches-ignore: | ||
- RB-2.* | ||
tags-ignore: | ||
- v1.* | ||
- v2.* | ||
paths: | ||
- '**' | ||
- '!**.md' | ||
- '!website/**' | ||
- 'website/src/**' | ||
- '!src/wrappers/**' | ||
- '!.github/workflows/**' | ||
- '.github/workflows/bazel_build.yml' | ||
|
||
permissions: | ||
contents: read | ||
|
@@ -45,69 +39,69 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/[email protected].0 | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-ubuntu-22 | ||
|
||
- name: Build | ||
run: | | ||
bazelisk build //... | ||
bazelisk test //... | ||
bazelisk test --test_output=errors //... | ||
build_and_test_windows: | ||
name: Windows Server 2022 build <Visual Studio 2022> | ||
runs-on: windows-2022 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/[email protected].0 | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-windows-2022 | ||
|
||
- name: Build | ||
run: | | ||
bazelisk build //... | ||
bazelisk test //... | ||
bazelisk test --test_output=errors //... | ||
build_and_test_macos: | ||
name: macOS 13 Bazel build <Apple Clang14> | ||
runs-on: macos-13 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/[email protected].0 | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-macos-13 | ||
|
||
- name: Build | ||
run: | | ||
bazelisk build //... | ||
bazelisk test //... | ||
bazelisk test --test_output=errors //... | ||
build_and_test_macos_M1: | ||
name: macOS 14 Bazel build <Apple Clang14> | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/[email protected].0 | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-macos-14 | ||
|
||
- name: Build | ||
run: | | ||
bazelisk build //... | ||
bazelisk test //... | ||
bazelisk test --test_output=errors //... |
Oops, something went wrong.