Skip to content

Commit

Permalink
Merge pull request #91 from project-tsurugi/ci-prepare-public-final
Browse files Browse the repository at this point in the history
Modify CI for preparing public - final
  • Loading branch information
akirakw authored Oct 4, 2023
2 parents 9c53a7e + e8b231b commit b002658
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
12 changes: 0 additions & 12 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Jogasaki-Install-Dependencies

inputs:
token:
description: token for checkout private repo
required: true
sharksfin-implementation:
description: sharksfin implementation (memory or shirakami)
required: true
Expand All @@ -25,7 +22,6 @@ runs:
repository: project-tsurugi/takatori
path: ${{ inputs.path }}/takatori
ref: master
token: ${{ inputs.token }}

- name: Checkout_Yugawara
uses: actions/checkout@v3
Expand All @@ -35,7 +31,6 @@ runs:
path: ${{ inputs.path }}/yugawara
ref: master
submodules: true
token: ${{ inputs.token }}

- name: Checkout_Shakujo
uses: actions/checkout@v3
Expand All @@ -45,7 +40,6 @@ runs:
path: ${{ inputs.path }}/shakujo
ref: master
submodules: recursive
token: ${{ inputs.token }}

- name: Checkout_Mizugaki
uses: actions/checkout@v3
Expand All @@ -54,7 +48,6 @@ runs:
repository: project-tsurugi/mizugaki
path: ${{ inputs.path }}/mizugaki
ref: master
token: ${{ inputs.token }}

- name: Checkout_Limestone
uses: actions/checkout@v3
Expand All @@ -63,7 +56,6 @@ runs:
repository: project-tsurugi/limestone
path: ${{ inputs.path }}/limestone
ref: master
token: ${{ inputs.token }}

- name: Checkout_Yakushima
uses: actions/checkout@v3
Expand All @@ -72,7 +64,6 @@ runs:
repository: project-tsurugi/yakushima
path: ${{ inputs.path }}/yakushima
ref: master
token: ${{ inputs.token }}

- name: Checkout_Shirakami
uses: actions/checkout@v3
Expand All @@ -81,7 +72,6 @@ runs:
repository: project-tsurugi/shirakami
path: ${{ inputs.path }}/shirakami
ref: master
token: ${{ inputs.token }}

- name: Checkout_Sharksfin
uses: actions/checkout@v3
Expand All @@ -90,7 +80,6 @@ runs:
repository: project-tsurugi/sharksfin
path: ${{ inputs.path }}/sharksfin
ref: master
token: ${{ inputs.token }}

- name: Checkout_Tateyama
uses: actions/checkout@v3
Expand All @@ -100,7 +89,6 @@ runs:
path: ${{ inputs.path }}/tateyama
ref: master
submodules: true
token: ${{ inputs.token }}

- name: Install_Takatori
run: |
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.GHA_PAT }}

- name: Install_Dependencies
uses: ./.github/actions/install-dependencies
with:
token: ${{ secrets.GHA_PAT }}
sharksfin-implementation: ${{ matrix.sharksfin-implementation }}

- name: CMake_Build_Jogasaki_${{ matrix.sharksfin-implementation }}
Expand Down Expand Up @@ -80,13 +78,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GHA_PAT }}
submodules: true

- name: Install_Dependencies
uses: ./.github/actions/install-dependencies
with:
token: ${{ secrets.GHA_PAT }}
sharksfin-implementation: memory

- name: CMake_Build_Jogasaki_memory
Expand Down

0 comments on commit b002658

Please sign in to comment.