Skip to content

Commit f14bf5d

Browse files
authored
Merge branch 'main' into cicd-kb-port
2 parents a1baf57 + fa72290 commit f14bf5d

File tree

10 files changed

+276
-145
lines changed

10 files changed

+276
-145
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* @bcumming @msimberg @RMeli
2-
docs/services/jupyterlab.md @rsarm
2+
docs/access/jupyterlab.md @rsarm
33
docs/services/firecrest @jpdorsch @ekouts
44
docs/software/communication @Madeeks @msimberg
55
docs/software/devtools/linaro @jgphpc
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build docs (merge queue)
2+
3+
on:
4+
merge_group:
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-python@v4
11+
with:
12+
python-version: 3.x
13+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
14+
- uses: actions/cache@v3
15+
with:
16+
key: mkdocs-material-${{ env.cache_id }}
17+
path: .cache
18+
restore-keys: |
19+
mkdocs-material-
20+
- run: pip install --upgrade pip
21+
- run: |
22+
pip install -r requirements.txt
23+
- run: rm -rf site
24+
- run: cat mkdocs.yml
25+
- run: mkdocs build --strict

docs/access/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ This documentation guides users through the process of accessing CSCS systems an
2626

2727
[:octicons-arrow-right-24: SSH][ref-ssh]
2828

29+
- :simple-jupyter: __JupyterLab__
30+
31+
JupyterLab is a feature-rich notebook authoring application and editing environment.
32+
33+
[:octicons-arrow-right-24: JupyterLab][ref-jupyter]
34+
2935
- :fontawesome-solid-layer-group: __VSCode__
3036

3137
How to connect VSCode IDE on your laptop with Alps

docs/access/jupyterlab.md

Lines changed: 241 additions & 0 deletions
Large diffs are not rendered by default.

docs/clusters/eiger.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@ Eiger is an Alps cluster that provides compute nodes and file systems designed t
2626
* The versions of compilers, `cray-mpich`, Python and libraries in uenv are up to date.
2727
* The scientific application uenv have up to date versions of the supported applications.
2828

29-
### Unimplemented features
30-
31-
!!! under-construction "Jupyter is not yet available"
32-
[Jupyter][ref-jlab] has not yet been configured on `Eiger.Alps`.
33-
34-
**It will be deployed as soon as possible and this documentation will be updated accordingly**
35-
3629
### Minor changes
3730

3831
!!! change "Slurm is updated from version 23.02.6 to 24.05.4"
@@ -160,7 +153,7 @@ See the Slurm documentation for instructions on how to run jobs on the [AMD CPU
160153

161154
### JupyterHub
162155

163-
A JupyterHub service for Eiger is available at [https://jupyter-eiger.cscs.ch](https://jupyter-eiger.cscs.ch).
156+
A [JupyterHub][ref-jupyter] service for Eiger is available at [https://jupyter-eiger.cscs.ch](https://jupyter-eiger.cscs.ch).
164157

165158
### FirecREST
166159

docs/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@ If you cannot find the information that you need in the documentation, help is a
110110

111111
[:octicons-arrow-right-24: CI/CD for external projects](services/cicd.md)
112112

113-
[:octicons-arrow-right-24: JupyterLab](services/jupyterlab.md)
114-
115113

116114
- :fontawesome-solid-hammer: __Software__
117115

docs/services/index.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,5 @@
1212
FirecREST is a RESTful API for programmatically accessing High-Performance Computing resources.
1313

1414
[:octicons-arrow-right-24: FirecREST][ref-firecrest]
15-
16-
- :simple-jupyter: __JupyterLab__
17-
18-
JupyterLab is a feature-rich notebook authoring application and editing environment.
19-
20-
[:octicons-arrow-right-24: JupyterLab][ref-jlab]
2115
</div>
2216

docs/services/jupyterlab.md

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

docs/software/prgenv/julia.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Start the image and activate the Julia[up] HPC setup by loading the following vi
5353
uenv start julia/25.5:v1 --view=juliaup,modules
5454
```
5555

56-
There is also a view `jupyter` available, which is required for [using Julia in JupyterHub][using-julia-in-jupyterhub].
56+
There is also a view `jupyter` available, which is required for [using Julia in JupyterHub][using-julia-in-jupyter].
5757

5858
!!! info "Automatic installation of Juliaup and Julia"
5959
The installation of `juliaup` and the latest `julia` version happens automatically the first time when `juliaup` is called:

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ nav:
4141
- 'Multi Factor Authentication (MFA)': access/mfa.md
4242
- 'Web Services': access/web.md
4343
- 'SSH': access/ssh.md
44+
- 'JupyterLab': access/jupyterlab.md
4445
- 'VSCode': access/vscode.md
4546
- 'Software':
4647
- software/index.md
@@ -97,7 +98,6 @@ nav:
9798
- services/index.md
9899
- 'FirecREST': services/firecrest.md
99100
- 'CI/CD': services/cicd.md
100-
- 'JupyterLab': services/jupyterlab.md
101101
- 'Running Jobs':
102102
- running/index.md
103103
- 'Slurm': running/slurm.md

0 commit comments

Comments
 (0)