Merge pull request #62 from nulab/BLG_INTG-1603/migrate-to-pekko-from… #30
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
name: Build | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Checkout submodules | |
shell: bash | |
run: | | |
git config --global url."https://github.com/".insteadOf "[email protected]:" | |
auth_header="$(git config --local --get http.https://github.com/.extraheader)" | |
git submodule sync --recursive | |
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v12 | |
with: | |
java-version: "[email protected]" | |
- name: Coursier cache | |
uses: coursier/cache-action@v6 | |
- name: Set header | |
run: sed -i -e 's/internal.getString("application.iaah")/"${{ secrets.IAAH }}"/' common/core/src/main/scala/com/nulabinc/backlog/migration/common/conf/BacklogConfiguration.scala | |
- name: Check format | |
run: | | |
mkdir -p dist | |
sbt -no-colors checkAll > dist/result.txt | |
- name: Test | |
run: 'sbt "testOnly com.nulabinc.*"' | |
- name: Assembly | |
run: | | |
sbt assembly | |
mkdir -p target/dist | |
mv target/scala-2.13/*.jar target/dist | |
- name: Upload jar file | |
uses: actions/upload-artifact@v1 | |
with: | |
name: backlog-migration-redmine | |
path: target/dist | |
notify: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Notify to Typetalk if success | |
if: success() | |
uses: shomatan/typetalk-action@master | |
env: | |
TYPETALK_TOKEN: ${{ secrets.TYPETALK_TOKEN }} | |
with: | |
topic-id: 54145 | |
message: ":tada: Redmine importer job success :smile:\n${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}" | |
- name: Notify to Typetalk if fail | |
if: failure() | |
uses: shomatan/typetalk-action@master | |
env: | |
TYPETALK_TOKEN: ${{ secrets.TYPETALK_TOKEN }} | |
with: | |
topic-id: 54145 | |
message: ":rage: Redmine importer job failed\n${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}" | |
- name: Notify to Typetalk if cancelled | |
if: cancelled() | |
uses: shomatan/typetalk-action@master | |
env: | |
TYPETALK_TOKEN: ${{ secrets.TYPETALK_TOKEN }} | |
with: | |
topic-id: 54145 | |
message: ":no_entry: Redmine importer job cancelled\n${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}" | |