1
- name : CI
1
+ name : GridTools Ubuntu CI Pipeline
2
+
2
3
on :
3
4
push :
4
5
branches :
5
6
- main
6
7
tags : ['*']
7
8
pull_request :
9
+
8
10
concurrency :
9
- # Skip intermediate builds: always.
10
- # Cancel intermediate builds: only if it is a pull request build.
11
11
group : ${{ github.workflow }}-${{ github.ref }}
12
12
cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
13
+
13
14
jobs :
14
15
test :
15
16
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -19,36 +20,49 @@ jobs:
19
20
matrix :
20
21
julia_version :
21
22
- ' 1.8'
22
- # - 'nightly'
23
23
python_version :
24
24
- ' 3.10'
25
25
os :
26
26
- ubuntu-latest
27
27
arch :
28
28
- x64
29
+
29
30
steps :
30
31
- uses : actions/checkout@v3
32
+
31
33
- name : Set up Python ${{ matrix.python_version }}
32
34
uses : actions/setup-python@v4
33
35
with :
34
- python-version : ${{ matrix.python_version }} # TODO(tehrengruber): cache?
35
- - name : Install boost
36
- run : sudo apt install libboost-all-dev
36
+ python-version : ${{ matrix.python_version }}
37
+
38
+ - name : Install dependencies
39
+ run : |
40
+ sudo apt-get update
41
+ sudo apt-get install -y libboost-all-dev
42
+ python -m pip install --upgrade pip
43
+
37
44
- name : Install GT4Py
38
45
run : |
39
- #git clone https://github.com/GridTools/gt4py.git
40
46
git clone --branch fix_python_interp_path_in_cmake https://github.com/tehrengruber/gt4py.git
41
47
cd gt4py
42
- #git checkout 91307b10e2ca1edb76a72cd8a3bebdd66898da60 # TODO(tehrengruber): remove
43
48
pip install -r requirements-dev.txt
44
49
pip install .
50
+
51
+ - name : Install atlas4py
52
+ run : |
53
+ pip install -i https://test.pypi.org/simple/ atlas4py
54
+
45
55
- uses : julia-actions/setup-julia@v1
46
56
with :
47
57
version : ${{ matrix.julia_version }}
48
58
arch : ${{ matrix.arch }}
59
+
49
60
- uses : julia-actions/cache@v1
61
+
50
62
- uses : julia-actions/julia-buildpkg@v1
63
+
51
64
- uses : julia-actions/julia-runtest@v1
65
+
52
66
- name : Archive production artifacts
53
67
uses : actions/upload-artifact@v4
54
68
if : always()
0 commit comments