We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765e05b commit 9553becCopy full SHA for 9553bec
.github/workflows/main.yml
@@ -19,12 +19,31 @@ jobs:
19
MEPHIT:
20
name: Build and test
21
runs-on: ubuntu-latest
22
- container:
23
- image: ghcr.io/itpplasma/devel-tex:latest # Specify the Debian Docker image
24
25
steps:
26
- uses: actions/checkout@v3
27
+ - name: Install dependencies
+ run: |
28
+ apt-get update && apt-get install -y -q --no-install-recommends \
29
+ apt-transport-https \
30
+ build-essential \
31
+ ca-certificates \
32
+ curl \
33
+ libssl-dev \
34
+ openssh-client \
35
+ rsync \
36
+ wget \
37
+ git \
38
+ gfortran \
39
+ ninja-build \
40
+ cmake \
41
+ python3 \
42
+ python3-dev \
43
+ python3-pip \
44
+ python3-venv
45
+
46
47
- name: Initialize Gitlab access token
48
run: |
49
git config --global credential.helper store
0 commit comments