Version 0.0.2 #6
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
name: cicd | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
max-parallel: 1 | |
matrix: | |
python-version: [3.9] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
submodules: recursive | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup Go and protoc | |
run: | | |
python do.py setup_ext | |
- name: Install dependencies | |
run: | | |
python do.py setup | |
python do.py init | |
- name: Generate Python and Go SDK | |
run: | | |
".env/bin/python" do.py generate_sdk | |
- name: Build distribution | |
run: | | |
python do.py dist | |
python do.py generate_distribution_checksum | |
- name: Commit go and python pkg | |
id: get_sha | |
run: | | |
git config user.name "Github Actions Bot" | |
git config user.email "[email protected]" | |
git pull | |
git add --force goopentestbed/\* | |
git add --force opentestbed/\* | |
git add --force requirements.txt | |
if git status --porcelain | grep . | |
then | |
git commit -m "Update auto generated go opentestbed" | |
git push | |
else | |
echo "No change in auto generated go opentestbed" | |
fi | |
echo "::set-output name=sha::$(git rev-parse HEAD)" | |
- name: storing get_sha in file | |
run: | | |
echo "${{ steps.get_sha.outputs.sha }}" > store_sha_file | |
- name: Archive generated artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: generated-artifacts | |
path: | | |
dist | |
opentestbed | |
goopentestbed | |
testbed-models-release | |
*.proto | |
store_sha_file | |
publish_python_package: | |
if: github.ref == 'refs/heads/main' | |
needs: [build] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.6 | |
- uses: actions/download-artifact@v2 | |
with: | |
name: generated-artifacts | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Get package version | |
id: get_version | |
run: | | |
echo "::set-output name=version::v$(python do.py version)" | |
- name: Check tag for current version | |
uses: mukunku/[email protected] | |
id: check_tag | |
with: | |
tag: ${{ steps.get_version.outputs.version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish package | |
if: github.ref == 'refs/heads/main' && steps.check_tag.outputs.exists == 'false' | |
run: | | |
PYPI_USERNAME=__token__ PYPI_PASSWORD=${{ secrets.PYPI_API_TOKEN }} python do.py release | |
- name: Create release and publish artifacts | |
if: github.ref == 'refs/heads/main' && steps.check_tag.outputs.exists == 'false' | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "dist/*,testbed-models-release,*.proto" | |
tag: ${{ steps.get_version.outputs.version }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: get_sha value from file | |
id: get_sha | |
run: | | |
echo "::set-output name=value::$(cat store_sha_file)" | |
- name: Create tag for goopentestbed | |
if: github.ref == 'refs/heads/main' && steps.check_tag.outputs.exists == 'false' | |
uses: actions/github-script@v3 | |
with: | |
github-token: ${{ github.token }} | |
script: | | |
github.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: "refs/tags/goopentestbed/${{ steps.get_version.outputs.version }}", | |
sha: "${{ steps.get_sha.outputs.value }}" | |
}) |