Skip to content

Commit

Permalink
Adds development git workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
006627 committed Nov 29, 2024
1 parent 571f6e8 commit 34c6b4e
Showing 1 changed file with 89 additions and 0 deletions.
89 changes: 89 additions & 0 deletions .github/workflows/development.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
name: "Development"

on:
push:
branches:
- "development"

jobs:
build:
runs-on: ubuntu-latest

env:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"

services:
mysql:
image: mariadb:10.1
ports:
- 3306:3306
env:
MYSQL_ROOT_PASSWORD: 123456
options: >-
--health-cmd="mysqladmin ping"
--health-interval=5s
--health-timeout=2s
--health-retries=3
postgres:
image: postgres:9.6
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: 123456
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'adopt'
- name: Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Run Tests
run: mvn $MAVEN_CLI_OPTS -Dtestng.groups="travis-ci" test install
env:
DPT_MYSQL_USER: "root"
DPT_MYSQL_PASS: "123456"
DPT_MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
DPT_POSTGRESQL_USER: "postgres"
DPT_POSTGRESQL_PASS: "123456"
DPT_POSTGRESQL_PORT: ${{ job.services.postgres.ports[5432] }}
PGPASSWORD: '123456'

deploy:
needs: build
runs-on: ubuntu-latest
env:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'adopt'
- name: Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Install binding
run: mvn $MAVEN_CLI_OPTS clean install -Pdbptk-bindings
- name: Deploy to GitHub packages
run: mvn $MAVEN_CLI_OPTS clean package deploy -Dmaven.test.skip=true -Pdeploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 34c6b4e

Please sign in to comment.