forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github actions for triggering Internal CI
- Loading branch information
1 parent
e8f1d73
commit 0a95001
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
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,34 @@ | ||
name : Internal CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '**' # Triggers on a PR to any branch | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: [self-hosted, Linux, X64] # Runs on a Lunar lake | ||
env: | ||
BUILD_SOURCESDIRECTORY: ${{ github.workspace }} | ||
BUILD_BINARIESDIRECTORY: ${{ github.workspace }}/build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} # checkout the pr branch | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Create build directory | ||
run: | | ||
mkdir -p ${{ env.BUILD_BINARIESDIRECTORY }} | ||
chmod -R 777 ${{ env.BUILD_BINARIESDIRECTORY }} | ||
- name: Running Internal CI # Trigger Internal CI on the pr branch | ||
run: | | ||
cd tools/ci_build/github/linux/ | ||
dir | ||
./run_dockerbuild.sh -o ubuntu22.04 -p 3.10 -d openvino -v 2024.3.0 -x "--config Release --use_openvino CPU --build_wheel --build_shared_lib --parallel " |