forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Review builds for pull requests. (conda#11135)
- Loading branch information
Showing
3 changed files
with
112 additions
and
81 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Canary builds | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- CI tests | ||
branches: | ||
- master | ||
types: | ||
- completed | ||
|
||
jobs: | ||
build: | ||
if: github.event.workflow_run.conclusion == 'success' | ||
strategy: | ||
matrix: | ||
include: | ||
- runner: ubuntu-latest | ||
subdir: linux-64 | ||
- runner: macos-latest | ||
subdir: osx-64 | ||
- runner: windows-latest | ||
subdir: win-64 | ||
runs-on: ${{ matrix.runner }} | ||
steps: | ||
# Clean checkout of specific git ref needed for package metadata version | ||
# which needs env vars GIT_DESCRIBE_TAG and GIT_BUILD_STR: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.ref }} | ||
clean: true | ||
fetch-depth: 0 | ||
|
||
- name: Create and upload canary build | ||
uses: conda/actions/[email protected] | ||
with: | ||
package-name: conda | ||
subdir: ${{ matrix.subdir }} | ||
anaconda-org-channel: conda-canary | ||
anaconda-org-label: dev | ||
anaconda-org-token: ${{ secrets.ANACONDA_ORG_TOKEN }} |
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,71 @@ | ||
name: Review builds | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
build: | ||
if: | | ||
github.event_name == 'pull_request' && | ||
github.event.label.name == 'build::review' | ||
strategy: | ||
matrix: | ||
include: | ||
- runner: ubuntu-latest | ||
subdir: linux-64 | ||
- runner: macos-latest | ||
subdir: osx-64 | ||
- runner: windows-latest | ||
subdir: win-64 | ||
runs-on: ${{ matrix.runner }} | ||
steps: | ||
- name: Check current actor | ||
id: in_team | ||
uses: conda/actions/[email protected] | ||
with: | ||
org: conda | ||
team: conda-core | ||
user: ${{ github.actor }} | ||
|
||
- name: Remove build label | ||
uses: actions/github-script@v5 | ||
with: | ||
github-token: ${{ secrets.CANARY_ACTION_TOKEN }} | ||
script: | | ||
const { data: pullRequest } = await github.rest.pulls.get({ | ||
...context.repo, | ||
pull_number: context.issue.number, | ||
}) | ||
const buildLabel = '${{ github.event.label.name }}' | ||
const labels = pullRequest.labels.map(label => label.name) | ||
const hasBuildLabel = labels.includes(buildLabel) | ||
if (hasBuildLabel) { | ||
await github.rest.issues.removeLabel({ | ||
...context.repo, | ||
issue_number: context.issue.number, | ||
name: buildLabel, | ||
}) | ||
} | ||
# Clean checkout of specific git ref needed for package metadata version | ||
# which needs env vars GIT_DESCRIBE_TAG and GIT_BUILD_STR: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.ref }} | ||
clean: true | ||
fetch-depth: 0 | ||
|
||
- name: Create and upload review build | ||
if: steps.in_team.outputs.contains == 'true' | ||
uses: conda/actions/[email protected] | ||
with: | ||
package-name: conda | ||
subdir: ${{ matrix.subdir }} | ||
anaconda-org-channel: conda-canary | ||
anaconda-org-label: '${{ github.repository_owner }}-${{ github.event.repository.name }}-pr-${{ github.event.number }}' | ||
anaconda-org-token: ${{ secrets.ANACONDA_ORG_TOKEN }} | ||
comment-headline: 'Review build status' | ||
comment-token: ${{ secrets.CANARY_ACTION_TOKEN }} |