Skip to content

Commit

Permalink
Change run-on target to aws ci for e2e (#3745)
Browse files Browse the repository at this point in the history
* change run-on target to aws ci for e2e

* remove on-push event to prepare merge queue enablement

* add ready-for-review event
  • Loading branch information
yunchu authored Jul 17, 2024
1 parent 749d089 commit 51e12ed
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ permissions: read-all

jobs:
Daily-e2e-tests:
runs-on: [self-hosted, linux, x64, dev]
runs-on: [otx-gpu-a10g-1]
needs: Unit-Test
container:
image: 219678651685.dkr.ecr.eu-west-1.amazonaws.com/ote-ci:11.7.1.2-devel-ubuntu20.04
options: "--runtime=nvidia --env-file=/home/runner/.nvidia.env --ipc=host"
strategy:
fail-fast: false
matrix:
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/pre_merge.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
name: PR Checks

on:
push:
branches:
- develop
- releases/**
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
merge_group:
branches:
- develop
- releases/**
workflow_dispatch: # run on request (no need for PR)

# Declare default permissions as read only.
Expand Down Expand Up @@ -86,6 +87,9 @@ jobs:
chmod +x codecov
./codecov -t ${{ secrets.CODECOV_TOKEN }} --sha $COMMIT_ID -U $HTTP_PROXY -f .tox/coverage_unit-test-${{ matrix.tox-env }}.xml -F ${{ matrix.tox-env }}
Integration-Test:
if: |
github.event.pull_request.draft == false &&
!(startsWith(github.event.pull_request.title, '[WIP]'))
runs-on: [otx-gpu-a10g-1]
needs: Unit-Test
container:
Expand Down

0 comments on commit 51e12ed

Please sign in to comment.