Skip to content

Commit 1a7c102

Browse files
authored
Merge pull request #1342 from cloudbees-oss/merge-v1-20260616-part2
merge v1 branch to main - 20260616 part2
2 parents dead43f + 0428339 commit 1a7c102

1 file changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/bazel-test.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ on:
44
branches:
55
- main
66
paths:
7-
- 'WORKSPACE'
8-
- 'src/**'
9-
- '!src/**.md'
7+
- "WORKSPACE"
8+
- "src/**"
9+
- "!src/**.md"
10+
- ".github/workflows/bazel-test.yml"
1011
pull_request:
1112
paths:
12-
- 'WORKSPACE'
13-
- 'src/**'
14-
- '!src/**.md'
13+
- "WORKSPACE"
14+
- "src/**"
15+
- "!src/**.md"
16+
- ".github/workflows/bazel-test.yml"
1517
jobs:
1618
test:
1719
runs-on: ubuntu-latest
@@ -32,3 +34,10 @@ jobs:
3234
- name: Run Bazel test
3335
run: |
3436
bazel test //...
37+
- name: Check exe_deploy.jar is up to date
38+
run: |
39+
bazel build //src/main/java/com/launchableinc/ingest/commits:exe_deploy.jar
40+
if ! diff -q bazel-bin/src/main/java/com/launchableinc/ingest/commits/exe_deploy.jar smart_tests/jar/exe_deploy.jar > /dev/null 2>&1; then
41+
echo "smart_tests/jar/exe_deploy.jar is out of date. Run build-java.sh to update it."
42+
exit 1
43+
fi

0 commit comments

Comments
 (0)