Skip to content

Commit 765e05b

Browse files
authored
Update main.yml
1 parent 9e65a4a commit 765e05b

File tree

1 file changed

+41
-7
lines changed

1 file changed

+41
-7
lines changed

.github/workflows/main.yml

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# This is a basic workflow to help you get started with Actions
22

33
name: CI
4+
env:
5+
GITLAB_ACCESS_TOKEN: ${{ secrets.GITLAB_ACCESS_TOKEN }}
46

57
# Controls when the workflow will run
68
on:
@@ -14,21 +16,53 @@ on:
1416
workflow_dispatch:
1517

1618
jobs:
17-
build:
19+
MEPHIT:
1820
name: Build and test
1921
runs-on: ubuntu-latest
2022
container:
21-
image: ghcr.io/itpplasma/base:latest # Specify the Debian Docker image
23+
image: ghcr.io/itpplasma/devel-tex:latest # Specify the Debian Docker image
2224

2325
steps:
2426
- uses: actions/checkout@v3
2527

26-
- name: Clone repository
27-
env:
28-
GITLAB_ACCESS_TOKEN: ${{ secrets.GITLAB_ACCESS_TOKEN }}
28+
- name: Initialize Gitlab access token
2929
run: |
30-
echo "Cloning repository"
3130
git config --global credential.helper store
3231
echo "https://x-access-token:[email protected]" >> ~/.git-credentials
32+
33+
- name: libneo
34+
run: |
35+
git clone https://github.com/itpplasma/libneo.git
36+
37+
- name: NEO-2
38+
run: |
39+
git clone https://github.com/itpplasma/NEO-2.git
40+
41+
- name: NEO-RT
42+
run: |
43+
mkdir contrib
44+
cd contrib
45+
git clone [email protected]:itpplasma/quadpack
46+
git clone [email protected]:itpplasma/vode
47+
cd ..
48+
git clone [email protected]:itpplasma/spline
49+
git clone [email protected]:itpplasma/BOOZER_MAGFIE
50+
git clone [email protected]:itpplasma/NEO-RT
51+
52+
- name: SIMPLE
53+
run: |
54+
git clone [email protected]:itpplasma/SIMPLE
55+
56+
- name: GORILLA
57+
run: |
58+
git clone https://github.com/itpplasma/GORILLA.git
59+
60+
- name: MEPHIT
61+
run: |
3362
git clone https://gitlab.tugraz.at/plasma/codes/MEPHIT.git
34-
git clone https://gitlab.tugraz.at/plasma/codes/kim.git
63+
64+
- name: KIM
65+
run: |
66+
git clone https://gitlab.tugraz.at/plasma/codes/MEPHIT.git
67+
68+

0 commit comments

Comments
 (0)