Skip to content

Commit

Permalink
test実行をbranchのみにしてtagのときは実行されないようにし、release時の計算量を減らす (VOICEVOX#258)
Browse files Browse the repository at this point in the history
* deployはrelease時のみにし、release時の計算量を減らす

現在だとtag作るとtag分のbuild_and_deploy(deployされない)とreleaseのbuild_and_deploy(deployされる)が実行されるため
release時にかかる計算量が多くなってしまうのでtest実行後のbuild_and_deployをなくした

* build_and_deployをmainのみではなくtagのときだけ除外するようにした

* tag-ignoreは不要そうなので削除

* branches全体にかかるように設定

* 階層わけしているものも拾えるようにした

* release時にテストが実行されないようにした

* release buildできるかの確認はしたいのでPRとbranchの場合はされるようにした 
  • Loading branch information
qwerty2501 authored Sep 4, 2022
1 parent b521cb1 commit 217f6f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ on:
release:
types:
- published
workflow_run:
workflows: ["test workflow"]
types:
- completed
pull_request:
push:
branches:
- "*"
- "**/*"
env:
# releaseタグ名か、workflow_dispatchでのバージョン名か、DEBUGが入る
VERSION: ${{ github.event.release.tag_name || github.event.inputs.version || 'DEBUG' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: test workflow
on:
push:
branches:
- "*"
- "**/*"
pull_request:
release:
types:
- published
jobs:
rust-lint:
runs-on: windows-latest
Expand Down

0 comments on commit 217f6f3

Please sign in to comment.