forked from OWASP/SecurityShepherd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
have tests in one workflow with separate jobs and don't push a releas…
…e through a pull request
- Loading branch information
1 parent
a1b8b82
commit 8f8f9d5
Showing
6 changed files
with
97 additions
and
126 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Java Build and Test | ||
on: | ||
push: | ||
branches: [master, dev] | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Build Security Shepherd | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Build Maven with Docker Profile | ||
run: mvn clean install -Pdocker -DskipTests -B | ||
- name: Docker Compose Build | ||
run: docker-compose build | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql:5.7 | ||
env: | ||
MYSQL_ROOT_PASSWORD: password | ||
MYSQL_DATABASE: core | ||
ports: | ||
- '8888:3306' | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Start MYSQL Server | ||
run: sudo /etc/init.d/mysql start | ||
- name: Modify MySQL Connection Variables | ||
run: | | ||
sed -i "s/'@'localhost'/'@'%'/g" ${GITHUB_WORKSPACE}/src/main/resources/database/moduleSchemas.sql | ||
sed -i 's/TEST_MYSQL_PORT=3306/TEST_MYSQL_PORT=8888/g' ${GITHUB_WORKSPACE}/.env | ||
- name: Run Unit Tests | ||
run: mvn test -B -e -X | ||
integration-tests: | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql:5.7 | ||
env: | ||
MYSQL_ROOT_PASSWORD: password | ||
MYSQL_DATABASE: core | ||
ports: | ||
- '8888:3306' | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Start MYSQL Server | ||
run: sudo /etc/init.d/mysql start | ||
- name: Modify MySQL Connection Variables | ||
run: | | ||
sed -i "s/'@'localhost'/'@'%'/g" ${GITHUB_WORKSPACE}/src/main/resources/database/moduleSchemas.sql | ||
sed -i 's/TEST_MYSQL_PORT=3306/TEST_MYSQL_PORT=8888/g' ${GITHUB_WORKSPACE}/.env | ||
- name: Prepare Intergration Tests | ||
run: | | ||
sudo apt-get -y install libargon2-0 | ||
mvn -Pdocker validate | ||
- name: Run Intergration Tests | ||
run: | | ||
mvn verify -DskipUTs=true -DmongoDocker -B | ||
lint-java: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 # v2 minimum required | ||
- uses: axel-op/googlejavaformat-action@v3 | ||
with: | ||
args: "--set-exit-if-changed" |
This file was deleted.
Oops, something went wrong.