Skip to content

Commit edc85f3

Browse files
committed
fix all
1 parent 48bf85a commit edc85f3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/mainline-compile.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ jobs:
3636
bazel-${{ runner.os }}-${{ matrix.compiler }}-
3737
bazel-${{ runner.os }}-
3838
39+
- name: Fix permissions
40+
run: chown -R ci:ci "$GITHUB_WORKSPACE"
41+
3942
- name: Bazel build (linux-opt mode, with ${{ matrix.compiler }} compiler)
40-
run: |
41-
sudo -u ci bazelisk build //... --config=linux-opt --compiler=${{ matrix.compiler }}
43+
run: sudo -u ci bazelisk build //... --config=linux-opt --compiler=${{ matrix.compiler }}
4244

4345
- name: Upload package tarball
4446
uses: actions/upload-artifact@v4

.github/workflows/mainline-format.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ jobs:
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v4
19-
with:
20-
fetch-depth: 0
2119

2220
- name: Run formatters
2321
run: sudo -u ci bazelisk run :format

.github/workflows/mainline-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121

2222
- name: Run linters
2323
continue-on-error: true
24-
run: sudo -u ci bazelisk lint //... --aspect:interactive=false -k
24+
run: sudo -u ci bazelisk lint //src/... --aspect:interactive=false -k --config=linux-dbg

0 commit comments

Comments
 (0)