Skip to content

Commit

Permalink
Clone other repos
Browse files Browse the repository at this point in the history
  • Loading branch information
trungleduc committed Oct 11, 2024
1 parent 186c1c7 commit 8259e0c
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/buid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,28 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
- name: Checkout
uses: actions/checkout@v4
with:
path: main

- name: Checkout pyjs
uses: actions/checkout@v4
with:
repository: emscripten-forge/pyjs
path: pyjs

- name: Checkout xeus-python
uses: actions/checkout@v4
with:
repository: jupyter-xeus/xeus-python
path: xeus-python

- name: Checkout jupyterlite-xeus
uses: actions/checkout@v4
with:
repository: jupyterlite/xeus
path: xeus

- uses: actions/setup-node@v4
with:
Expand All @@ -28,7 +44,11 @@ jobs:
- uses: docker/setup-buildx-action@v3

- name: Build
working-directory: main
run: |
echo "PY_JS_PATH=../pyjs" >> .env
echo "JUPYTERLITE_XEUS_PATH=../xeus" >> .env
echo "XEUS_PYTHON_PATH=../xeus-python" >> .env
npm install
npm run build
npm run start

0 comments on commit 8259e0c

Please sign in to comment.