Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c3a615

Browse files
committed
CI: add non-blocking kotlin extractor build check
This is to check that the build from `codeql` works. The "official" build will still be checked from the internal repo with QLucie, once we integrate the bazel build there.
1 parent bc89742 commit 9c3a615

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/kotlin-build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "Kotlin Build"
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "java/kotlin-extractor/**"
7+
- "misc/bazel/**"
8+
- "misc/codegen/**"
9+
- "*.bazel*"
10+
- .github/workflows/kotlin-build.yml
11+
branches:
12+
- main
13+
- rc/*
14+
- codeql-cli-*
15+
16+
permissions:
17+
contents: read
18+
19+
jobs:
20+
build:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- run: |
25+
bazel query //java/kotlin-extractor/...
26+
# only build the default version as a sanity check that we can build from `codeql`
27+
# the full official build will be checked by QLucie
28+
bazel build //java/kotlin-extactor

0 commit comments

Comments
 (0)