Skip to content

Commit

Permalink
Merge pull request #110 from aali309/testWithForkedMain25
Browse files Browse the repository at this point in the history
feat(ci): testing25
  • Loading branch information
aali309 committed Oct 26, 2023
2 parents df506ab + aca5fcc commit 3287f4c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
if: contains(github.event.comment.body, '/retest')
strategy:
matrix:
arch: [amd64]
arch: [md64]
uses: ./.github/workflows/integrated-test.yml
with:
build-arch: ${{ matrix.arch }}
Expand All @@ -208,7 +208,7 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\build_test**\` completed successfully ✅. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\build_test\` completed successfully ✅. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand All @@ -225,7 +225,7 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\retest**\` Integration: All tests pass ✅. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\retest\` Integration: All tests pass ✅. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand All @@ -242,15 +242,15 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\build_test**\` : At least one test failed ❌. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\build_test\` : At least one test failed ❌. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: commentBody
});
comment-retest-integration-fail:
comment-retest-integration-fail: #testing
if: (always() && contains(needs.*.result, 'failure'))
needs: [retest-integration]
runs-on: ubuntu-latest
Expand All @@ -259,7 +259,7 @@ jobs:
with:
script: |
const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`;
const commentBody = `\`**\retest**\` Integration: At least one test failed ❌. \n[View Actions Run](${runURL}).`;
const commentBody = `\`\\retest\` Integration: At least one test failed ❌. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand Down

0 comments on commit 3287f4c

Please sign in to comment.