Skip to content

Commit

Permalink
OK-735: Kokeillaan buildia github-actionsissä
Browse files Browse the repository at this point in the history
  • Loading branch information
heidilm committed Nov 26, 2024
1 parent 30f11a3 commit e7d05ca
Showing 1 changed file with 107 additions and 0 deletions.
107 changes: 107 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
name: Ovara build workflow

on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'corretto'
cache: 'maven'

- name: Build with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd ovara-backend
mvn clean package -B -DskipTests
- uses: actions/cache@v3
id: ci-tools
with:
path: ci-tools
key: ${{ github.sha }}

# deploy_image:
# runs-on: ubuntu-latest
# needs: build
#
# steps:
# - uses: actions/checkout@v3
#
# - uses: actions/cache@v3
# id: restore-build
# with:
# path: |
# kouta-backend/target
# ovara-kouta/target
# key: ${{ github.sha }}
#
# - uses: actions/cache@v3
# id: ci-tools
# with:
# path: ci-tools
# key: ${{ github.sha }}
#
# - name: Build Docker container
# shell: bash
# env:
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# run: |
# set -euo pipefail
# export ARTIFACT_NAME="kouta-backend"
# export OVARA_EXPORTER_NAME="ovara-kouta"
# export BASE_IMAGE="baseimage-fatjar-openjdk11:master"
# source ci-tools/common/setup-tools.sh
#
# mv kouta-backend/target/kouta-backend-*-jar-with-dependencies.jar $DOCKER_BUILD_DIR/artifact/${ARTIFACT_NAME}.jar
# cp -vr kouta-backend/src/main/resources/* $DOCKER_BUILD_DIR/config/
# ./ci-tools/common/pull-image.sh
# ./ci-tools/github-build/build-fatjar.sh $ARTIFACT_NAME
#
# ./ci-tools/common/clean-docker-build-dir.sh
#
# mv ovara-kouta/target/ovara-kouta-*-jar-with-dependencies.jar $DOCKER_BUILD_DIR/artifact/${OVARA_EXPORTER_NAME}.jar
# cp -vr ovara-kouta/src/main/resources/* $DOCKER_BUILD_DIR/config/
# cp -v kouta-backend/src/main/resources/oph-configuration/kouta-backend.properties.template $DOCKER_BUILD_DIR/config/oph-configuration/
# cat $DOCKER_BUILD_DIR/config/oph-configuration/ovara-kouta.additional.properties.template $DOCKER_BUILD_DIR/config/oph-configuration/kouta-backend.properties.template
# rm $DOCKER_BUILD_DIR/config/oph-configuration/ovara-kouta.additional.properties.template
# ./ci-tools/common/pull-image.sh
# ./ci-tools/github-build/build-fatjar.sh $OVARA_EXPORTER_NAME
#
# ./ci-tools/github-build/upload-image.sh $ARTIFACT_NAME
# ./ci-tools/github-build/upload-image.sh $OVARA_EXPORTER_NAME
#
# deploy_to_artifactory:
# runs-on: ubuntu-latest
# needs: build
# if: github.ref == 'refs/heads/master'
#
# steps:
# - uses: actions/checkout@v3
#
# - uses: actions/cache@v3
# id: ci-tools
# with:
# path: ci-tools
# key: ${{ github.sha }}
#
# - name: Deploy to artifactory
# env:
# ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
# ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
# run: mvn deploy -DskipTests --settings ci-tools/common/maven-settings.xml

0 comments on commit e7d05ca

Please sign in to comment.