-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor workflows into scripts [skip ci]
Remove bintray
- Loading branch information
1 parent
03688d5
commit 970efe8
Showing
14 changed files
with
185 additions
and
350 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
name: 'dispatch-single-icu' | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
icu: | ||
description: ICU version | ||
required: true | ||
jobs: | ||
icu: | ||
runs-on: ubuntu-latest | ||
name: icu4c | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Build icu | ||
env: | ||
ICU: ${{ github.event.inputs.icu }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
WORKSPACE: ${{ github.workspace }} | ||
run: | | ||
existing_version=$(gh release view icu4c 2>/dev/null | grep -Po $ICU | head -n 1) | ||
if [ "$ICU" != "$existing_version" ]; then | ||
bash src/build-icu4c.sh | ||
bash src/release-icu4c.sh | ||
else | ||
echo "icu4c $ICU build exists" | ||
fi |
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 was deleted.
Oops, something went wrong.
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,27 @@ | ||
name: 'icu' | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
icu: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
icu: [50.2, 51.3, 52.2, 53.2, 54.2, 55.2, 56.2, 57.2, 58.3, 59.2, 60.3, 61.2, 62.2, 63.2, 64.2, 65.1, 66.1, 67.1, 68.1, 68.2] | ||
name: icu4c | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Build icu | ||
env: | ||
ICU: ${{ matrix.icu }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
WORKSPACE: ${{ github.workspace }} | ||
run: | | ||
existing_version=$(gh release view icu4c 2>/dev/null | grep -Po $ICU | head -n 1) | ||
if [ "$ICU" != "$existing_version" ]; then | ||
bash src/build-icu4c.sh | ||
bash src/release-icu4c.sh | ||
else | ||
echo "icu4c $ICU build exists" | ||
fi |
Oops, something went wrong.