-
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.
OK-735: Lisätään artifactory username ja password settingsiin
- Loading branch information
Showing
2 changed files
with
28 additions
and
83 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -9,99 +9,33 @@ on: | |
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Set up JDK 21 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '21' | ||
java-version: '17' | ||
distribution: 'corretto' | ||
cache: 'maven' | ||
|
||
- uses: szenius/[email protected] | ||
with: | ||
timezoneLinux: "Europe/Helsinki" | ||
|
||
- name: Build with Maven | ||
env: | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
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 |
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