Compare commits

...

10 commits

Author SHA1 Message Date
rzmk
eca830a9ad build: specify jupyter-book 1 not 2
Some checks are pending
deploy-book / deploy-book (push) Waiting to run
2025-12-03 07:39:56 -05:00
rzmk
219c217b0f build: fix start script 2025-12-03 07:19:22 -05:00
rzmk
46674ba20b ci: add executable permissions to qsv 2025-12-03 07:12:45 -05:00
rzmk
919fe26540 ci: use jupyter book 1.0 2025-12-03 07:10:47 -05:00
rzmk
ca8813184d ci: update jupyter book command 2025-12-03 07:09:38 -05:00
rzmk
d117d0ca6a build: update start script and CI with --html for building book 2025-12-03 07:08:29 -05:00
rzmk
e165786be3 ci: fix qsv binary issue 2025-12-03 07:05:37 -05:00
rzmk
21c810f994 ci: separate mv step 2025-12-03 07:03:11 -05:00
rzmk
2e2d3c93e6 ci: attempt fixing qsv download and path 2025-12-03 07:01:13 -05:00
rzmk
b149c3f385 build: attempt using external qsv for book and lab 2025-12-03 06:59:42 -05:00
4 changed files with 4 additions and 3 deletions

View file

@ -31,12 +31,12 @@ jobs:
- name: Add qsv to PATH - name: Add qsv to PATH
run: | run: |
echo "${GITHUB_WORKSPACE}/path_files" >> $GITHUB_PATH mkdir path_files && cd path_files && curl -LO https://mk-sb.dathere.com/storage/v1/object/public/public-qsv-binaries/100/qsv && chmod +x qsv && echo "${GITHUB_WORKSPACE}/path_files" >> $GITHUB_PATH
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install -e ./bash_kernel pip install -e ./bash_kernel
pip install jupyter-book pip install "jupyter-book<2.0"
python -m bash_kernel.install python -m bash_kernel.install
# (optional) Cache your executed notebooks between runs # (optional) Cache your executed notebooks between runs

Binary file not shown.

View file

@ -1,2 +1,2 @@
jupyter-book jupyter-book<2.0
jupyterlab jupyterlab

1
start
View file

@ -1,6 +1,7 @@
#!/bin/bash #!/bin/bash
python -m bash_kernel.install python -m bash_kernel.install
mkdir ~/path_files && cd ~/path_files && curl -LO "https://mk-sb.dathere.com/storage/v1/object/public/public-qsv-binaries/100/qsv" && chmod +x qsv && cd ~
export PATH=$HOME/path_files:$PATH export PATH=$HOME/path_files:$PATH
exec "$@" exec "$@"