Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ci): testing11 #96

Merged
merged 3 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/ci-build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ on:
build-arch:
required: true
type: string
skip-itests:
required: false
type: boolean
default: false
run-tests-only:
required: false
type: boolean
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/integrated-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,25 @@ on:
required: true
type: string
pr-number:
required: false
type: string
required: false
type: string
sha-value:
required: false
type: string
required: false
type: string
skip-itests:
required: false
type: boolean
default: false

permissions:
contents: read
packages: read


jobs:
integration-tests: #testing
integration-tests: #test
runs-on: ubuntu-latest
if: ${{ !inputs.skip-itests }}
steps:
- name: Install xpath
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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-and-test: All tests pass ✅. \n[View Actions Run](${runURL}).`;
const commentBody = both build and itest completed successfully ✅. \n[View Actions Run](${runURL}).`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand Down
Loading