Skip to content

Commit

Permalink
chore: CI/CD and basic infrastructure for the IntelliJ Plugin (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz authored May 9, 2024
1 parent 59c1f06 commit ade2cf5
Show file tree
Hide file tree
Showing 38 changed files with 2,077 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!--
^^^^^
Please fill the title above according to https://www.conventionalcommits.org/en/v1.0.0/.
type(scope): message <TICKET-NUMBER-IF-ANY>
eg. fix(type-hint): infer type of a constant for type checking INTELLIJ-1111
-->
## Description
<!--- Describe your changes in detail so reviewers have enough content on what this PR aims to achieve -->
<!--- If applicable, describe (or illustrate) architecture flow -->

### Checklist
- [ ] New tests and/or benchmarks are included.
- [ ] Documentation is changed or added.
- [ ] Changelog is updated accordingly.
- [ ] I have signed the MongoDB Contributor License Agreement (https://www.mongodb.com/legal/contributor-agreement).

## Open Questions
<!--- Any particular areas you'd like reviewers to pay attention to? -->
121 changes: 121 additions & 0 deletions .github/workflows/draft-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
name: Draft release

on:
workflow_dispatch:
inputs:
versionBump:
description: 'Version bump'
type: choice
required: true
default: 'patch'
options:
- patch
- minor
- major
- exact-version

exactVersion:
description: 'Exact version: (Only effective selecting "exact-version" as version bump)'
required: false

permissions:
contents: write

jobs:
prepare-release:
name: "Prepare Release"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
cache: 'gradle'
- name: Determine Next Version
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
VERSION_BUMP=${{ github.event.inputs.versionBump }}
if [[ "$VERSION_BUMP" == "major" || "$VERSION_BUMP" == "minor" || "$VERSION_BUMP" == "patch" ]]; then
./gradlew --quiet --console=plain versionBump -Pmode="$VERSION_BUMP"
else
./gradlew --quiet --console=plain versionBump -PexactVersion="${{ github.event.inputs.exactVersion }}"
fi
NEXT_VERSION=$(./gradlew --quiet --console=plain getVersion)
echo "RELEASE_TAG=v${NEXT_VERSION}" >> "$GITHUB_ENV"
- name: Validate release tag
shell: bash
run: |
if [ -z "${RELEASE_TAG}" ]; then
echo "RELEASE_TAG is not set or is empty"
exit 1
fi
if git rev-parse "$RELEASE_TAG" >/dev/null 2>&1; then
echo "Error: Tag $RELEASE_TAG already existing"
echo "If you are trying to re-create a draft release with this version, please delete the release and the tag first."
echo "If this version has already been release consider using a different one."
exit 1
fi
- name: Run All Tests
run: |
./gradlew "unitTest" ":packages:jetbrains-plugin:test"
- name: Patch Plugin XML
run: |
./gradlew ":packages:jetbrains-plugin:patchPluginXml"
- name: Verify Plugin
run: |
./gradlew ":packages:jetbrains-plugin:verifyPlugin"
- name: Patch Changelog
run: |
./gradlew ":packages:jetbrains-plugin:patchChangelog"
- name: Sign and Publish Plugin in Beta
env:
JB_PUBLISH_CHANNEL: "beta"
run: |
./gradlew ":packages:jetbrains-plugin:publishPlugin"
- name: Create Draft Release
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }}
run: |
set -e
echo Creating draft release for: "${RELEASE_TAG}"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit --no-verify -m "Release ${RELEASE_TAG}"
git tag ${RELEASE_TAG}
git push origin ${RELEASE_TAG}
GIT_REF=$(git rev-parse ${RELEASE_TAG})
ls packages/jetbrains-plugin/build/distributions/jetbrains-plugin.zip
CHANGELOG=$(./gradlew --quiet --console=plain :packages:jetbrains-plugin:getChangelog)
gh release create "${RELEASE_TAG}" \
--title "${RELEASE_TAG}" \
--notes "${CHANGELOG}" \
--target "${GIT_REF}" \
--draft \
packages/jetbrains-plugin/build/distributions/jetbrains-plugin.zip

42 changes: 42 additions & 0 deletions .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Publish Release

on:
release:
types: [published]

jobs:
prepare-release:
name: "Prepare Release"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
cache: 'gradle'

- uses: robinraju/[email protected]
with:
tag: ${{ github.ref_name }}
fileName: 'jetbrains-plugin.zip'
out-file-path: 'packages/jetbrains-plugin/build/distributions/'
- name: Publish Plugin In General Availability
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }}
JB_PUBLISH_CHANNEL: "ga"
run: |
set -e
./gradlew ":packages:jetbrains-plugin:publishPlugin" $(./gradlew ":packages:jetbrains-plugin:publishPlugin" --dry-run | awk '/^:/ { print "-x" $1 }' | sed '$ d')
git checkout main
git merge ${{ github.ref_name }}
git push origin main
Loading

0 comments on commit ade2cf5

Please sign in to comment.