Skip to content

Commit 3650de2

Browse files
author
Sachin Hulyalkar
committed
Add build targets workflow
1 parent 2318827 commit 3650de2

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build Code Editor Targets
2+
on:
3+
push:
4+
branches:
5+
- 'main'
6+
- '*.*.x'
7+
8+
jobs:
9+
build:
10+
name: Build Code Editor Targets
11+
runs-on: ubuntu-latest
12+
environment: build-targets-workflow-env
13+
strategy:
14+
matrix:
15+
build-targets: [code-editor-server, code-editor-sagemaker-server, code-editor-web-embedded]
16+
exclude:
17+
# Only build SageMaker for now, remove the excluded targets when needed in the future.
18+
- build-targets: code-editor-server
19+
- build-targets: code-editor-web-embedded
20+
steps:
21+
- name: Start Build Workflow
22+
run: |
23+
echo "Starting Build Workflow for target: ${{ matrix.build-targets }}"

.github/workflows/sachinh-test.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)