Skip to content

Commit a635332

Browse files
committed
chore: sync with ecsact_common
1 parent 177250a commit a635332

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,39 @@ on:
99
- "**"
1010

1111
jobs:
12+
typos-check:
13+
name: Typos Check
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: crate-ci/[email protected]
18+
1219
formatting-check:
1320
name: Formatting Check
1421
runs-on: ubuntu-latest
1522
steps:
1623
- uses: actions/checkout@v4
17-
- uses: jidicula/clang-format-action@v4.9.0
18-
with: { clang-format-version: "16" }
24+
- uses: jidicula/clang-format-action@v4.11.0
25+
with: { clang-format-version: "18" }
1926

2027
test-windows:
2128
runs-on: windows-latest
2229
steps:
23-
- name: Ecsact SDK
24-
uses: ecsact-dev/[email protected]
2530
- uses: actions/cache@v3
2631
with:
2732
path: |
2833
/Users/runneradmin/AppData/Local/bazelisk
2934
/Users/runneradmin/.cache/bazel-disk-cache
3035
key: ${{runner.os}}-bazel-cache
3136
- uses: actions/checkout@v4
32-
- run: bazelisk --output_user_root=C:/tmp build --config=ci //...
37+
- run: bazelisk build --config=ci //...
3338
- if: ${{ hashfiles('test/MODULE.bazel') != '' }}
34-
run: bazelisk --output_user_root=C:/tmp test --config=ci ...
39+
run: bazelisk test --config=ci ...
3540
working-directory: test
3641

3742
test-linux:
3843
runs-on: ubuntu-latest
3944
steps:
40-
- name: Ecsact SDK
41-
uses: ecsact-dev/[email protected]
4245
- uses: actions/cache@v3
4346
with:
4447
path: |

bazel/copts.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ copts = selects.with_or({
1010
"-fexperimental-library",
1111
],
1212
("@rules_cc//cc/compiler:msvc-cl", "@rules_cc//cc/compiler:clang-cl"): [
13-
"/std:c++latest",
13+
"/std:c++20",
1414
"/permissive-",
1515
"/Zc:preprocessor",
1616
],

0 commit comments

Comments
 (0)