add windows e2e workflow #2
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
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
test_path: | |
description: "The path from 'test/integration' to the target to be tested, e.g. 'cli'" | |
required: false | |
sha: | |
description: 'The hash value of the commit.' | |
required: true | |
pull_request_number: | |
description: 'The number of the PR.' | |
required: false | |
name: PR E2E Tests | |
jobs: | |
integration-fork-windows: | |
runs-on: windows-latest | |
if: | |
github.event_name == 'workflow_dispatch' && inputs.sha != '' | |
steps: | |
- uses: actions-ecosystem/action-regex-match@v2 | |
id: validate-tests | |
with: | |
text: ${{ inputs.test_path }} | |
regex: '[^a-z0-9-:.\/_]' # Tests validation | |
flags: gi | |
# Check out merge commit | |
- name: Checkout PR | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.sha }} | |
- name: Get the hash value of the latest commit from the PR branch | |
uses: octokit/graphql-action@v2.x | |
id: commit-hash | |
if: ${{ inputs.pull_request_number != '' }} | |
with: | |
query: | | |
query PRHeadCommitHash($owner: String!, $repo: String!, $pr_num: Int!) { | |
repository(owner:$owner, name:$repo) { | |
pullRequest(number: $pr_num) { | |
headRef { | |
target { | |
... on Commit { | |
oid | |
} | |
} | |
} | |
} | |
} | |
} | |
owner: ${{ github.event.repository.owner.login }} | |
repo: ${{ github.event.repository.name }} | |
pr_num: ${{ fromJSON(inputs.pull_request_number) }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install Python deps | |
run: pip install .[obj,dev] | |
- name: Install the CLI | |
run: make install | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: make INTEGRATION_TEST_PATH="${{ inputs.test_path }}" testint | |
env: | |
LINODE_CLI_TOKEN: ${{ secrets.LINODE_TOKEN_2 }} | |
- uses: actions/github-script@v6 | |
id: update-check-run | |
if: ${{ inputs.pull_request_number != '' && fromJson(steps.commit-hash.outputs.data).repository.pullRequest.headRef.target.oid == inputs.sha }} | |
env: | |
number: ${{ github.event.client_payload.pull_request.number }} | |
job: ${{ github.job }} | |
conclusion: ${{ job.status }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const { data: pull } = await github.rest.pulls.get({ | |
...context.repo, | |
pull_number: process.env.number | |
}); | |
const ref = pull.head.sha; | |
const { data: checks } = await github.rest.checks.listForRef({ | |
...context.repo, | |
ref | |
}); | |
const check = checks.check_runs.filter(c => c.name === process.env.job); | |
const { data: result } = await github.rest.checks.update({ | |
...context.repo, | |
check_run_id: check[0].id, | |
status: 'completed', | |
conclusion: process.env.conclusion | |
}); | |
return result; |