forked from HotswapProjects/HotswapAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 1.09 KB
/
maven.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Java CI with Maven
on:
push:
branches: [ "for_action","spring" ]
pull_request:
branches: [ "for_action" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Set up JBR17
run: |
curl -L -o jdk.tar.gz https://github.com/TravaOpenJDK/trava-jdk-11-dcevm/releases/download/dcevm-11.0.15%2B1/Openjdk11u-dcevm-linux-x64.tar.gz
tar -xzf jdk.tar.gz
export JAVA_HOME=$PWD/dcevm-11.0.15+1
export PATH=$JAVA_HOME/bin:$PATH
java -version
shell: bash
- name: Maven install
run: |
export JAVA_HOME=$PWD/dcevm-11.0.15+1
export PATH=$JAVA_HOME/bin:$PATH
java -version
mvn install -DskipTests && cd plugin/hotswap-agent-mybatis-plugin && mvn test
shell: bash
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6