-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
63 additions
and
165 deletions.
There are no files selected for viewing
22 changes: 12 additions & 10 deletions
22
.github/workflows/develop-example-server.yml → .github/workflows/example-server.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,36 @@ | ||
name: example server - develop | ||
name: example server | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
paths: | ||
- 'docker/example-server/**' | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- 'docker/example-server/**' | ||
- 'docker/example-server/resources/server/**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: ${{ github.event.repository.name }} | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 1.8 | ||
distribution: 'temurin' | ||
java-version: 8 | ||
|
||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Build with Maven | ||
run: cd docker/example-server/resources/server && mvn -B package --file pom.xml |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 14 additions & 11 deletions
25
.github/workflows/master-ssrf-server.yml → .github/workflows/spring-server.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
name: ssrf server - master | ||
name: spring server | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'docker/ssrf-server/**' | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- 'docker/ssrf-server/**' | ||
- 'docker/spring-remoting/resources/server/**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
steps: | ||
- name: ${{ github.event.repository.name }} | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 1.8 | ||
distribution: 'temurin' | ||
java-version: 8 | ||
|
||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Build with Maven | ||
run: cd docker/ssrf-server/resources/server && mvn -B package --file pom.xml | ||
run: cd docker/spring-remoting/resources/server/ && mvn -B package --file pom.xml |
23 changes: 13 additions & 10 deletions
23
.github/workflows/develop-ssrf-server.yml → .github/workflows/ssrf-server.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
name: ssrf server - develop | ||
name: ssrf server | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
paths: | ||
- 'docker/ssrf-server/**' | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- 'docker/ssrf-server/**' | ||
- 'docker/ssrf-server/resources/server/**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
steps: | ||
- name: ${{ github.event.repository.name }} | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 1.8 | ||
distribution: 'temurin' | ||
java-version: 8 | ||
|
||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Build with Maven | ||
run: cd docker/ssrf-server/resources/server && mvn -B package --file pom.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters