Skip to content

Commit a1bacee

Browse files
committed
7903836: apidiff: Add GitHub Actions test workflow
Reviewed-by: jjg
1 parent b8685ae commit a1bacee

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflow/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build and Test ApiDiff
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- master
7+
- pr/*
8+
9+
jobs:
10+
11+
linux-x64:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: 'Check out repository'
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 1
19+
20+
- name: 'Set up Java Development Kit'
21+
uses: oracle-actions/setup-java@v1
22+
with:
23+
website: oracle.com
24+
release: 17
25+
26+
- name: 'Build ApiDiff'
27+
shell: bash
28+
run: |
29+
java --version
30+
bash make/build.sh

0 commit comments

Comments
 (0)