-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
310 changed files
with
5,110 additions
and
3,256 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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
name: 1.18 build check | ||
|
||
on: | ||
push: | ||
branches: | ||
- 1_18 | ||
paths: | ||
- src/** | ||
- build.sbt | ||
- .scalafix.conf | ||
- .scalafmt.conf | ||
- project/* | ||
- .github/workflows/**.yml | ||
- .github/actions/**/**.yml | ||
|
||
jobs: | ||
build_check: | ||
env: | ||
BUILD_ENVIRONMENT_IS_CI_OR_LOCAL: "CI" | ||
runs-on: ubuntu-22.04 | ||
container: ghcr.io/giganticminecraft/seichiassist-builder-v2:1df7cf5 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Prepare build dependencies cache | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-build-dependencies | ||
cache-version: v-5 | ||
with: | ||
# sbt等は$HOMEではなくユーザーディレクトリを見ているようで、 | ||
# GH Actionsでの ~ は /github/home/ に展開されるにもかかわらず | ||
# 実際のキャッシュは /root/ 以下に配備される。 | ||
# | ||
# /root/.ivy/cache, /root/.sbt - sbt関連のキャッシュ | ||
# /root/.m2 - ビルドログを観察した感じprotoc等はここを利用する | ||
# /root/.cache - cousierがscalasbt等をキャッシュするのに使っている | ||
path: | | ||
/root/.ivy2/cache | ||
/root/.sbt | ||
/root/.m2 | ||
/root/.cache | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}-${{ hashFiles('**/build.sbt') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}- | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}- | ||
- name: Prepare build cache | ||
if: github.ref != 'refs/heads/master' | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-build | ||
cache-version: v-5 | ||
with: | ||
path: | | ||
target | ||
project/target | ||
project/project/target | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}- | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}- | ||
# CIでのcheckoutはファイルのタイムスタンプをチェックアウト時刻に設定するため、 | ||
# そのままビルドするとlocalDependenciesにあるjarに変更が行われたと見なされ | ||
# 不要なインクリメンタルコンパイルが走る | ||
# タイムスタンプをコミット時刻に設定することでこれが回避できる | ||
- name: Restore localDependencies' timestamps | ||
# 参考: https://qiita.com/tomlla/items/219cea9dd071c8a9e147 | ||
run: | | ||
git config --global --add safe.directory /__w/SeichiAssist/SeichiAssist | ||
for jar in localDependencies/*.jar; do | ||
timestamp=`git log -1 --pretty=format:'%cd' --date=format:'%Y%m%d%H%M.%S' $jar` | ||
touch -t "$timestamp" $jar | ||
done | ||
# scalapbは.protoの再コンパイルの必要性を判定する際にタイムスタンプを見ているから、コミット時刻に合わせる | ||
- name: Restore protocol timestamps | ||
## 参考: https://qiita.com/tomlla/items/219cea9dd071c8a9e147 | ||
run: | | ||
for proto in protocol/*.proto; do | ||
timestamp=`git log -1 --pretty=format:'%cd' --date=format:'%Y%m%d%H%M.%S' $proto` | ||
touch -t "$timestamp" $proto | ||
done | ||
- name: Check format with Scalafmt | ||
run: ./sbt scalafmtCheckAll | ||
|
||
- name: Check lint with Scalafix on push | ||
run: ./sbt "scalafix --check" | ||
|
||
- name: Test and build artifact | ||
run: mkdir -p target/build && ./sbt assembly | ||
|
||
- name: Clean build artifact for caching target folder | ||
run: rm -r target/build |
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,111 @@ | ||
name: Create 1.18 release | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- src/** | ||
- build.sbt | ||
- .scalafix.conf | ||
- .scalafmt.conf | ||
- project/* | ||
- .github/workflows/**.yml | ||
- .github/actions/**/**.yml | ||
|
||
jobs: | ||
create_release: | ||
runs-on: ubuntu-22.04 | ||
container: ghcr.io/giganticminecraft/seichiassist-builder-v2:1df7cf5 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Prepare build dependencies cache | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-build-dependencies | ||
cache-version: v-5 | ||
with: | ||
# sbt等は$HOMEではなくユーザーディレクトリを見ているようで、 | ||
# GH Actionsでの ~ は /github/home/ に展開されるにもかかわらず | ||
# 実際のキャッシュは /root/ 以下に配備される。 | ||
# | ||
# /root/.ivy/cache, /root/.sbt - sbt関連のキャッシュ | ||
# /root/.m2 - ビルドログを観察した感じprotoc等はここを利用する | ||
# /root/.cache - cousierがscalasbt等をキャッシュするのに使っている | ||
path: | | ||
/root/.ivy2/cache | ||
/root/.sbt | ||
/root/.m2 | ||
/root/.cache | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}-${{ hashFiles('**/build.sbt') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}- | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}- | ||
- name: Prepare build cache | ||
if: github.ref != 'refs/heads/master' | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-build | ||
cache-version: v-5 | ||
with: | ||
path: | | ||
target | ||
project/target | ||
project/project/target | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}-${{ github.ref }}- | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-version }}- | ||
# CIでのcheckoutはファイルのタイムスタンプをチェックアウト時刻に設定するため、 | ||
# そのままビルドするとlocalDependenciesにあるjarに変更が行われたと見なされ | ||
# 不要なインクリメンタルコンパイルが走る | ||
# タイムスタンプをコミット時刻に設定することでこれが回避できる | ||
- name: Restore localDependencies' timestamps | ||
# 参考: https://qiita.com/tomlla/items/219cea9dd071c8a9e147 | ||
run: | | ||
git config --global --add safe.directory /__w/SeichiAssist/SeichiAssist | ||
for jar in localDependencies/*.jar; do | ||
timestamp=`git log -1 --pretty=format:'%cd' --date=format:'%Y%m%d%H%M.%S' $jar` | ||
touch -t "$timestamp" $jar | ||
done | ||
# scalapbは.protoの再コンパイルの必要性を判定する際にタイムスタンプを見ているから、コミット時刻に合わせる | ||
- name: Restore protocol timestamps | ||
## 参考: https://qiita.com/tomlla/items/219cea9dd071c8a9e147 | ||
run: | | ||
for proto in protocol/*.proto; do | ||
timestamp=`git log -1 --pretty=format:'%cd' --date=format:'%Y%m%d%H%M.%S' $proto` | ||
touch -t "$timestamp" $proto | ||
done | ||
# sbt-assembly 2以降からディレクトリを作ってくれなくなった | ||
- name: Build artifact | ||
run: mkdir -p target/build && ./sbt assembly | ||
|
||
- name: Create and push a tag | ||
id: tag-name | ||
# GiganticMinecraftにあるSeichiAssistリポジトリのブランチからのPRのみ実行 | ||
if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} | ||
run: | | ||
TAG_NAME=pr-${{ github.event.pull_request.number }}-${{ github.event.pull_request.head.sha }} | ||
git tag $TAG_NAME | ||
git push origin $TAG_NAME | ||
echo "value=$TAG_NAME" >> $GITHUB_OUTPUT | ||
- name: Create release | ||
uses: softprops/action-gh-release@v1 | ||
# GiganticMinecraftにあるSeichiAssistリポジトリのブランチからのPRのみ実行 | ||
if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
files: target/build/SeichiAssist.jar | ||
tag_name: ${{ steps.tag-name.outputs.value }} | ||
draft: false | ||
|
||
- name: Clean build artifact for caching target folder | ||
run: rm -r target/build |
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,18 @@ | ||
name: publish develop build | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
publish_build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Publish develop build | ||
env: | ||
SEICHIASSIST_DOWNLOADER_TOKEN: ${{ secrets.SEICHIASSIST_DOWNLOADER_TOKEN }} | ||
run: | | ||
curl -s -X 'POST' 'http://localhost/publish/develop' \ | ||
-H 'accept: */*' \ | ||
-H 'Authorization: Bearer $SEICHIASSIST_DOWNLOADER_TOKEN' |
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,18 @@ | ||
name: publish stable build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
publish_build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Publish stable build | ||
env: | ||
SEICHIASSIST_DOWNLOADER_TOKEN: ${{ secrets.SEICHIASSIST_DOWNLOADER_TOKEN }} | ||
run: | | ||
curl -s -X 'POST' 'http://localhost/publish/stable' \ | ||
-H 'accept: */*' \ | ||
-H 'Authorization: Bearer $SEICHIASSIST_DOWNLOADER_TOKEN' |
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 @@ | ||
17.0.10 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version = 3.4.3 | ||
version = 3.8.3 | ||
preset=IntelliJ | ||
runner.dialect = scala213 | ||
|
||
|
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
Oops, something went wrong.