-
-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: Fix bash script wrongful called * test * Revert "test" This reverts commit 49e8279.
- Loading branch information
Showing
4 changed files
with
7 additions
and
7 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 |
---|---|---|
|
@@ -13,7 +13,7 @@ on: | |
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
shell: bash -e {0} | ||
|
||
env: | ||
PACKAGE: "panel" | ||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ on: | |
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
shell: bash -e {0} | ||
|
||
env: | ||
DISPLAY: ":99.0" | ||
|
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
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 |
---|---|---|
|
@@ -29,7 +29,7 @@ concurrency: | |
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
shell: bash -e {0} | ||
|
||
env: | ||
DISPLAY: ":99.0" | ||
|
@@ -200,12 +200,12 @@ jobs: | |
- name: Build pyodide wheels | ||
run: pixi run -e test-ui "python ./scripts/build_pyodide_wheels.py" | ||
- name: Launch JupyterLab | ||
shell: pixi run -e test-ui bash -l {0} | ||
shell: pixi run -e test-ui bash -e {0} | ||
run: | | ||
jupyter server extension enable panel.io.jupyter_server_extension --sys-prefix | ||
(jupyter lab --config panel/tests/ui/jupyter_server_test_config.py --port 8887 > /tmp/jupyterlab_server.log 2>&1) & | ||
- name: Build JupyterLite | ||
shell: pixi run -e test-ui bash -l {0} | ||
shell: pixi run -e test-ui bash -e {0} | ||
run: pixi run -e lite lite-build | ||
- name: Wait for JupyterLab | ||
uses: ifaxity/[email protected] | ||
|
@@ -227,7 +227,7 @@ jobs: | |
if-no-files-found: ignore | ||
- name: Stop JupyterLab | ||
if: always() | ||
shell: pixi run -e test-ui bash -l {0} | ||
shell: pixi run -e test-ui bash -e {0} | ||
run: | | ||
jupyter lab stop 8887 || true | ||
- uses: codecov/codecov-action@v4 | ||
|