Skip to content

Commit 5bd9a67

Browse files
authored
Signed-off-by: Vertexwahn <[email protected]>
1 parent b893bda commit 5bd9a67

10 files changed

+13
-349
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.1.1
1+
8.4.2

.github/workflows/bazel_build.yml

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
bazelisk test --test_output=errors //...
5454
5555
build_and_test_windows:
56-
name: Windows Server 2022 build <Visual Studio 2022>
57-
runs-on: windows-2022
56+
name: Windows Server 2025 build <Visual Studio 2022>
57+
runs-on: windows-2025
5858

5959
steps:
6060
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -63,16 +63,16 @@ jobs:
6363
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
6464
with:
6565
path: "/home/runner/.cache/bazel"
66-
key: bazel-windows-2022
66+
key: bazel-windows-2025
6767

6868
- name: Build
6969
run: |
7070
bazelisk build //...
7171
bazelisk test --test_output=errors //...
7272
7373
build_and_test_macos:
74-
name: macOS 13 Bazel build <Apple Clang14>
75-
runs-on: macos-13
74+
name: macOS 15 Bazel build <Apple Clang14>
75+
runs-on: macos-15
7676

7777
steps:
7878
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -81,25 +81,7 @@ jobs:
8181
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
8282
with:
8383
path: "/home/runner/.cache/bazel"
84-
key: bazel-macos-13
85-
86-
- name: Build
87-
run: |
88-
bazelisk build //...
89-
bazelisk test --test_output=errors //...
90-
91-
build_and_test_macos_M1:
92-
name: macOS 14 Bazel build <Apple Clang14>
93-
runs-on: macos-14
94-
95-
steps:
96-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
97-
98-
- name: Mount Bazel cache
99-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
100-
with:
101-
path: "/home/runner/.cache/bazel"
102-
key: bazel-macos-14
84+
key: bazel-macos-15
10385

10486
- name: Build
10587
run: |

MODULE.bazel

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,9 @@ module(
66
compatibility_level = 1,
77
)
88

9-
bazel_dep(name = "bazel_skylib", version = "1.7.1")
10-
bazel_dep(name = "imath")
11-
bazel_dep(name = "openjph")
12-
bazel_dep(name = "libdeflate")
13-
bazel_dep(name = "platforms", version = "0.0.11")
14-
bazel_dep(name = "rules_cc", version = "0.1.1")
15-
16-
archive_override(
17-
module_name = "imath",
18-
patches = [
19-
"//bazel:imath_add_build_file.patch",
20-
"//bazel:imath_module_dot_bazel.patch",
21-
],
22-
strip_prefix = "Imath-main",
23-
urls = ["https://github.com/AcademySoftwareFoundation/Imath/archive/refs/heads/main.zip"],
24-
)
25-
26-
archive_override(
27-
module_name = "libdeflate",
28-
patches = [
29-
"//bazel:libdeflate_add_build_file.patch",
30-
"//bazel:libdeflate_module_dot_bazel.patch",
31-
],
32-
strip_prefix = "libdeflate-master",
33-
urls = ["https://github.com/ebiggers/libdeflate/archive/refs/heads/master.zip"],
34-
)
35-
36-
archive_override(
37-
module_name = "openjph",
38-
patches = [
39-
"//bazel:openjph_add_build_file.patch",
40-
"//bazel:openjph_module_dot_bazel.patch",
41-
],
42-
strip_prefix = "OpenJPH-0.21.5",
43-
urls = ["https://github.com/aous72/OpenJPH/archive/refs/tags/0.21.5.zip"],
44-
)
9+
bazel_dep(name = "bazel_skylib", version = "1.8.2")
10+
bazel_dep(name = "imath", version = "3.2.1")
11+
bazel_dep(name = "libdeflate", version = "1.24")
12+
bazel_dep(name = "openjph", version = "0.22.0")
13+
bazel_dep(name = "platforms", version = "1.0.0")
14+
bazel_dep(name = "rules_cc", version = "0.2.9")

bazel/BUILD.bazel

Lines changed: 0 additions & 1 deletion
This file was deleted.

bazel/imath_add_build_file.patch

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

bazel/imath_module_dot_bazel.patch

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

bazel/libdeflate_add_build_file.patch

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

bazel/libdeflate_module_dot_bazel.patch

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

bazel/openjph_add_build_file.patch

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

0 commit comments

Comments
 (0)