-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/GH-140-docker-image-loader
- Loading branch information
Showing
16 changed files
with
257 additions
and
151 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,33 @@ | ||
name: "Forge GH Actions Build" | ||
|
||
on: [push, pull_request] | ||
|
||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup jfrog CLI | ||
uses: jfrog/setup-jfrog-cli@v1 | ||
env: | ||
JF_ARTIFACTORY_1: ${{ secrets.JF_ARTIFACTORY_SERVER_1 }} | ||
|
||
- name: Ping Artifactory with jfrog CLI | ||
run: | | ||
# Ping the server | ||
jfrog rt ping | ||
- name: Generate artifacts | ||
run: | | ||
./build/zip_csar.sh | ||
- name: Deploy artifacts to Artifactory | ||
run: | | ||
./build/deploy_artifactory.sh | ||
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,39 @@ | ||
name: Artifactory Cleanup | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
from_date: | ||
description: '' | ||
required: false | ||
default: '30 days ago' | ||
schedule: | ||
- cron: '0 12 7,14,21,28 * *' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
cleanup: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup jfrog CLI | ||
uses: jfrog/setup-jfrog-cli@v1 | ||
env: | ||
JF_ARTIFACTORY_1: ${{ secrets.JF_ARTIFACTORY_SERVER_1 }} | ||
|
||
- name: Ping Artifactory with jfrog CLI | ||
run: | | ||
# Ping the server | ||
jfrog rt ping | ||
- name: Run Cleanup | ||
run: | | ||
./build/gh-action-cleanup-artifactory.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
FROM_DATE: ${{ github.event.inputs.from_date || '30 days ago' }} |
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,90 @@ | ||
name: Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_version: | ||
description: 'version to be released' | ||
required: true | ||
default: '' | ||
|
||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
release: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Configure Git user | ||
run: | | ||
git config user.email "[email protected]" | ||
git config user.name "GitHub Actions" | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Cache pip | ||
uses: actions/cache@v2 | ||
with: | ||
# This path is specific to Ubuntu | ||
path: ~/.cache/pip | ||
# Look to see if there is a cache hit for the corresponding requirements file | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
${{ runner.os }}- | ||
- name: Install dependencies | ||
run: pip install semantic_version | ||
|
||
- name: Tag and push a release | ||
id: release | ||
run: | | ||
./build/release.sh -v "${{ github.event.inputs.release_version }}" | ||
read -r major minor patch prerelease build <<< $(python -c "import semantic_version; v = semantic_version.Version('${{ github.event.inputs.release_version }}'); print(v.major, v.minor, v.patch, '.'.join(v.prerelease), '.'.join(v.build));") | ||
if [[ -z "${prerelease}" ]] ; then | ||
echo "PRERELEASE=false" >> $GITHUB_ENV | ||
else | ||
echo "PRERELEASE=true" >> $GITHUB_ENV | ||
fi | ||
tagName="v${{ github.event.inputs.release_version }}" | ||
echo "TAG_NAME=${tagName}" >> $GITHUB_ENV | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Checkout tag | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ env.TAG_NAME }} | ||
|
||
- name: Generate artifacts and changelog | ||
run: | | ||
./build/zip_csar.sh | ||
awk '{f=1} f{ if (/^## / && i++>=1) exit; else print $0}' CHANGELOG.md | tee CHANGELOG-for-version.md | ||
- name: Create or Update Github Release draft | ||
id: update_release | ||
uses: loicalbertin/action-gh-release@080e2e752ac77817dcfd2e8809873bdc24817584 | ||
with: | ||
tag_name: ${{ env.TAG_NAME }} | ||
body_path: CHANGELOG-for-version.md | ||
name: ${{ env.TAG_NAME }} | ||
prerelease: ${{ env.PRERELEASE }} | ||
draft: true | ||
files: build/csars/*.zip | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish Github Release | ||
uses: eregon/publish-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
release_id: ${{ steps.update_release.outputs.id }} |
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
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
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,39 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
comp_date=$(date --date="${FROM_DATE:=14 days ago}" +"%Y-%m-%dT%H:%M:%S.000Z") | ||
|
||
local_dist_path="forge-bin-dev-local/ystia/forge/dist" | ||
|
||
all_paths=$(jfrog rt s "${local_dist_path}/*/all-types*.zip" --limit 0 | jq -r ".[]| [.modified, .path] | @tsv" | sed -e "s@${local_dist_path}/\(.*\)/all-types-.*.zip@\1@g" | sort) | ||
|
||
function get_pr_state() { | ||
gh pr view "${1}" --json state | jq -r ".state" | ||
} | ||
|
||
function does_branch_exit() { | ||
gh api --silent "/repos/:owner/:repo/branches/${1}" 2> /dev/null | ||
return $? | ||
} | ||
|
||
function delete_artifactory_path() { | ||
jfrog rt del --quiet "${local_dist_path}/${1}" || echo "failed to delete ${local_dist_path}/${1}" | ||
} | ||
|
||
echo "${all_paths}" | while read line ; do | ||
item_date=$(echo "$line" | awk '{print $1}') | ||
if [[ "${item_date}" > "${comp_date}" ]] ; then | ||
continue | ||
fi | ||
ref=$(echo "${line}" | awk -F '\t' '{print $2}') | ||
if [[ "${ref}" == PR-* ]] ; then | ||
if [[ "$(get_pr_state "${ref##*PR-}")" != "OPEN" ]] ; then | ||
delete_artifactory_path "${ref}" | ||
fi | ||
else | ||
if ! does_branch_exit "${ref}" ; then | ||
delete_artifactory_path "${ref}" | ||
fi | ||
fi | ||
done |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.