-
Notifications
You must be signed in to change notification settings - Fork 1
150 lines (146 loc) · 6.48 KB
/
build-pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: Build
on:
# Triggers the workflow on push events
push:
branches: [ develop, release/**, feature/**, master, main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
REGISTRY: ghcr.io
ARTIFACT_BASE_NAME: cumulus-metadata-aggregator
jobs:
# First job name
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '8.0.232'
- uses: gradle/gradle-build-action@v1
with:
gradle-version: 8.0.1
- name: Install Python 3
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Python dependencies
run: |
pip3 install -r builder/requirements.txt
- name: Extract Maven project version
run: echo ::set-output name=current_version::$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
id: get-version
- name: Show extracted Maven project version
run: |
echo ${{ steps.get-version.outputs.current_version }}
base_ver="$(python3 builder/bump-version.py -v ${{ steps.get-version.outputs.current_version }} --get-base)"
echo "base_ver=$base_ver" >> $GITHUB_ENV
- name: Bump pre-alpha version
# If triggered by push to a feature branch
if: ${{ startsWith(github.ref, 'refs/heads/feature/') }}
run: |
git_sha="$(git rev-parse --short ${GITHUB_SHA})"
echo "git sha=$git_sha"
new_ver="${base_ver}+$git_sha"
echo "software_version=$new_ver" >> $GITHUB_ENV
- name: Bump alpha version
# If triggered by push to the develop branch
if: ${{ github.ref == 'refs/heads/develop' }}
run: |
bump_ver="$(python3 builder/bump-version.py -v ${{ steps.get-version.outputs.current_version }})"
if [[ "$bump_ver" == "None" ]]; then
bump_ver='0'
fi
new_ver="${base_ver}-alpha.${bump_ver}-SNAPSHOT"
echo "software_version=$new_ver" >> $GITHUB_ENV
- name: Bump rc version
# If triggered by push to a release branch
if: ${{ startsWith(github.ref, 'refs/heads/release/') }}
run: |
bump_ver="$(python3 builder/bump-version.py -v ${{ steps.get-version.outputs.current_version }})"
if [[ "$bump_ver" == "None" ]]; then
bump_ver='0'
fi
new_ver="${base_ver}-rc.${bump_ver}"
echo "software_version=$new_ver" >> $GITHUB_ENV
- name: Release version
# If triggered by push to the master branch
if: ${{ startsWith(github.ref, 'refs/heads/master') }}
run: |
new_ver="${base_ver}"
echo "software_version=$new_ver" >> $GITHUB_ENV
- name: Build new version
run: |
echo "New Version is: ${{ env.software_version }}"
python3 builder/builder.py -d . -a ${{env.ARTIFACT_BASE_NAME}} -v ${{ env.software_version }}
- name: Prepare Artifacts
run: |
artifact_file_name="${{ env.ARTIFACT_BASE_NAME }}-${{ env.software_version }}.zip"
echo "ARTIFACT_FILE=$artifact_file_name" >> $GITHUB_ENV
cp release/*.zip "$artifact_file_name"
- name: Create Release
id: create_release
if: ${{ contains(github.ref, 'master') }}
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: "v${{ env.software_version }}"
release_name: "Release v${{ env.software_version }} - ${{ github.ref }}"
body: |
Changes in this release:
${{ github.event.head_commit.message }}
body_path: release.md
draft: false
prerelease: false
- name: Create PreRelease
id: create_prerelease
if: ${{ !contains(github.ref, 'master') }}
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: "v${{ env.software_version }}"
release_name: "Release v${{ env.software_version }} - ${{ github.ref }}"
body: |
Changes in this release:
${{ github.event.head_commit.message }}
draft: false
prerelease: true
- name: Upload PreRelease Asset
id: upload-prerelease-asset
if: ${{ !contains(github.ref, 'master') }}
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_prerelease.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: "${{ env.ARTIFACT_FILE }}"
asset_name: "${{ env.ARTIFACT_FILE }}"
asset_content_type: application/zip
- name: Upload Release Asset
id: upload-release-asset
if: ${{ contains(github.ref, 'master') }}
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: "${{ env.ARTIFACT_FILE }}"
asset_name: "${{ env.ARTIFACT_FILE }}"
asset_content_type: application/zip
- name: Commit Version Bump
# If building develop, a release branch, or master then we commit the version bump back to the repo
if: |
github.ref == 'refs/heads/develop' ||
github.ref == 'refs/heads/master' ||
startsWith(github.ref, 'refs/heads/release')
run: |
git config --global user.name 'podaac-cloud-IandA'
git config --global user.email '[email protected]'
git commit -m "/version ${{ env.software_version }} [skip actions]" pom.xml
git push