forked from HotswapProjects/HotswapAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 1.05 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" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: for_action
- name: Set up JBR17
run: |
curl -L -o jbr.tar.gz https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.7.tar.gz
tar -xzf jbr.tar.gz
export JAVA_HOME=$PWD/jbrsdk-17.0.9-linux-x64-b1087.7
export PATH=$JAVA_HOME/bin:$PATH
java -version
shell: bash
- name: Maven install
run: |
export JAVA_HOME=$PWD/jbrsdk-17.0.9-linux-x64-b1087.7
export PATH=$JAVA_HOME/bin:$PATH
java -version
mvn clean install -DtestFailureIgnore=true
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