Skip to content

Commit

Permalink
Print link to test-version zip in PR discussions (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
merydian authored Jun 9, 2024
1 parent 33b2885 commit 1e0e192
Show file tree
Hide file tree
Showing 5 changed files with 145 additions and 8 deletions.
41 changes: 34 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Build

on: push
on:
push:
pull_request:

jobs:
build:
Expand All @@ -9,20 +11,45 @@ jobs:

steps:
- name: Get source code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# To fetch tags
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.10"
cache: "pip"
cache-dependency-path: "requirements/packaging.txt"

# - name: Install Qt lrelease
# run: |
# sudo apt-get update
# sudo apt-get install qttools5-dev-tools

- name: Install Python requirements
run: pip install -r requirements/packaging.txt

- name: Set plugin version environment variables
run: |
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
echo "VERSION=$(echo ${TAG} | awk -F. -v OFS=. 'NF==1{print ++$NF}; NF>1{if(length($NF+1)>length($NF))$(NF-1)++; $NF=sprintf("%0*d", length($NF), ($NF+1)%(10^length($NF))); print}')-alpha" >> $GITHUB_ENV
- name: Build package
run: |
python helper.py package dev-${GITHUB_SHA}
qgis-plugin-ci --no-validation package ${{ env.VERSION }}
mkdir tmp
unzip koordinates.zip -d tmp
unzip koordinates.${{ env.VERSION }}.zip -d tmp
- name: Save PR number to zips
run: |
cd tmp
echo ${{ github.event.number }} | tee pr_number
echo ${{ github.event.pull_request.head.sha }} | tee git_commit
echo ${{ github.event.number }}
- uses: actions/upload-artifact@v2
with:
name: koordinates_package
name: koordinates_package.${{ env.VERSION }}
path: tmp
104 changes: 104 additions & 0 deletions .github/workflows/build_artifact_comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
name: Write build artifact comments

on:
workflow_run:
workflows: ["Build"]
types:
- completed

permissions:
contents: read

jobs:
on-success:

permissions:
pull-requests: write

runs-on: ubuntu-latest
steps:
- name: Get source code
uses: actions/checkout@v4
with:
# To fetch tags
fetch-depth: 0

- name: 'Set plugin version environment variables'
run: |
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
echo "VERSION=$(echo ${TAG} | awk -F. -v OFS=. 'NF==1{print ++$NF}; NF>1{if(length($NF+1)>length($NF))$(NF-1)++; $NF=sprintf("%0*d", length($NF), ($NF+1)%(10^length($NF))); print}')-alpha" >> $GITHUB_ENV
echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: 'Download artifact'
id: download_artifact
uses: actions/github-script@v7
with:
script: |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.payload.workflow_run.id,
});
let matchArtifacts = allArtifacts.data.artifacts.filter((artifact) => {
return artifact.name == 'koordinates_package.${{ env.VERSION }}'
});
matchArtifacts.forEach((artifact) => {
});
if (matchArtifacts.length>0)
{
let download = await github.rest.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifacts[0].id,
archive_format: 'zip',
});
let fs = require('fs');
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/koordinates_package.${{ env.VERSION }}.zip`, Buffer.from(download.data));
core.setOutput('artifact_id', matchArtifacts[0].id);
}
else
{
core.setOutput('artifact_id', 0);
}
- name: 'Unzip artifact'
if: fromJSON(steps.download_artifact.outputs.artifact_id) > 0
run: |
unzip -n koordinates_package.${{ env.VERSION }}
- name: 'Post artifact download link as comment on PR'
if: fromJSON(steps.download_artifact.outputs.artifact_id) > 0
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
let fs = require('fs');
let issue_number = Number(fs.readFileSync('./pr_number'));
let git_sha = String(fs.readFileSync('./git_commit')).trim();
const prComments = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
});
const PREFIX = "## Plugin ready!";
let body = PREFIX + "\n\n" +
"A test version of this PR is available for testing [here](https://github.com/" + context.repo.owner + "/" + context.repo.repo + "/suites/" + context.payload.workflow_run.check_suite_id + "/artifacts/${{steps.download_artifact.outputs.artifact_id}}).";
body += "\n\n*(Built from commit " + git_sha + ")*";
const winBuildComment = prComments.data?.find(c => c.body.startsWith(PREFIX));
if (!!winBuildComment) {
// update the existing comment
await github.rest.issues.updateComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: winBuildComment.id,
body: body
});
} else {
// submit a new comment
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: body
});
}
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

strategy:
matrix:
docker_tags: [release-3_22, release-3_28, release-3_30, latest]
docker_tags: [release-3_22, release-3_28, release-3_30]

steps:

Expand Down
1 change: 1 addition & 0 deletions requirements/packaging.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
qgis-plugin-ci>=2.7.0
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ exclude = helper.py

[isort]
profile = black

[qgis-plugin-ci]
plugin_path = koordinates
github_organization_slug = koordinates
project_slug = koordinates-qgis-plugin

0 comments on commit 1e0e192

Please sign in to comment.