Skip to content

Build Code Editor Targets #6

Build Code Editor Targets

Build Code Editor Targets #6

Workflow file for this run

name: Build Code Editor Targets
on:
push:
branches:
- 'main'
- '*.*.x'
workflow_dispatch:
jobs:
build:
name: Build Code Editor Targets
runs-on: ubuntu-latest
environment: build-targets-workflow-env
strategy:
matrix:
build-targets: [code-editor-server, code-editor-sagemaker-server, code-editor-web-embedded]
exclude:
# Only build SageMaker for now, remove the excluded targets when needed in the future.
- build-targets: code-editor-server
- build-targets: code-editor-web-embedded
steps:
- name: Start Build Workflow
run: |
echo "Starting Build Workflow for target: ${{ matrix.build-targets }}"
- name: Set up build environment
run: |
echo "Installing required dependencies"
sudo apt-get update
sudo apt-get install -y quilt
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: List directory after checkout
run: |
ls
- name: Run quilt help
run: |
which quilt
quilt --version
- name: Run patches script
run: |
./scripts/prepare-src.sh