repair js
This commit is contained in:
parent
23a52a4c59
commit
a4cd89a82b
@ -154,12 +154,18 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: checkout code
|
- name: checkout code
|
||||||
uses: https://eoelab.org:1027/actions/checkout@v4
|
uses: https://eoelab.org:1027/actions/checkout@v4
|
||||||
- name: java build
|
|
||||||
|
JS:
|
||||||
|
runs-on: runner
|
||||||
|
needs: Base
|
||||||
|
steps:
|
||||||
|
- name: checkout code
|
||||||
|
uses: https://eoelab.org:1027/actions/checkout@v4
|
||||||
|
- name: js build
|
||||||
uses: https://eoelab.org:1027/actions/build-push-action@v6
|
uses: https://eoelab.org:1027/actions/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: Program/java
|
context: Program/js
|
||||||
tags: eoelab.org:1027/${{ gitea.repository }}:java
|
tags: eoelab.org:1027/${{ gitea.repository }}:js
|
||||||
|
|
||||||
|
|
||||||
JULIA:
|
JULIA:
|
||||||
runs-on: runner
|
runs-on: runner
|
||||||
@ -293,10 +299,9 @@ jobs:
|
|||||||
context: Math/matlab/mcm
|
context: Math/matlab/mcm
|
||||||
tags: eoelab.org:1027/${{ gitea.repository }}:matlab-mcm
|
tags: eoelab.org:1027/${{ gitea.repository }}:matlab-mcm
|
||||||
|
|
||||||
|
|
||||||
Push:
|
Push:
|
||||||
runs-on: runner
|
runs-on: runner
|
||||||
needs: [JAVA] #MATLAB_MCM, MAPLE, MMA
|
needs: [CPP] #MATLAB_MCM, MAPLE, MMA
|
||||||
steps:
|
steps:
|
||||||
- name: login gitea_registry
|
- name: login gitea_registry
|
||||||
uses: https://eoelab.org:1027/actions/login-action@v3
|
uses: https://eoelab.org:1027/actions/login-action@v3
|
||||||
|
@ -13,6 +13,15 @@ FROM eoelab.org:1027/ben0i0d/jupyter:py-c
|
|||||||
|
|
||||||
COPY --chown="${NB_UID}:${NB_GID}" --from=builder /opt/mamba /opt/mamba
|
COPY --chown="${NB_UID}:${NB_GID}" --from=builder /opt/mamba /opt/mamba
|
||||||
|
|
||||||
|
ENV PATH="/opt/mamba/bin:${PATH}"
|
||||||
|
|
||||||
|
USER root
|
||||||
|
|
||||||
|
RUN apt-get update --yes && apt-get install --yes g++ && \
|
||||||
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
USER ${NB_UID}
|
||||||
|
|
||||||
RUN jupyter kernelspec install /opt/mamba/share/jupyter/kernels/xcpp11 --sys-prefix && \
|
RUN jupyter kernelspec install /opt/mamba/share/jupyter/kernels/xcpp11 --sys-prefix && \
|
||||||
jupyter kernelspec install /opt/mamba/share/jupyter/kernels/xcpp11 --sys-prefix && \
|
jupyter kernelspec install /opt/mamba/share/jupyter/kernels/xcpp14 --sys-prefix && \
|
||||||
jupyter kernelspec install /opt/mamba/share/jupyter/kernels/xcpp11 --sys-prefix
|
jupyter kernelspec install /opt/mamba/share/jupyter/kernels/xcpp17 --sys-prefix
|
@ -1,11 +1,8 @@
|
|||||||
FROM eoelab.org:1027/ben0i0d/jupyter:py-c
|
FROM eoelab.org:1027/ben0i0d/jupyter:py-c
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
RUN apt-get update --yes && \
|
RUN apt-get update --yes && apt-get install --yes nodejs npm && \
|
||||||
apt-get install --yes nodejs npm && \
|
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
||||||
npm config set registry https://registry.npmmirror.com && \
|
npm config set registry https://registry.npmmirror.com && \
|
||||||
npm install -g --unsafe-perm ijavascript && \
|
npm install -g --unsafe-perm ijavascript && \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user