Skip to content

Commit 49d8e42

Browse files
committed
Merge remote-tracking branch 'origin' into 26-add-optimization
2 parents c4623f0 + 3bd4224 commit 49d8e42

File tree

1 file changed

+23
-9
lines changed

1 file changed

+23
-9
lines changed

.github/workflows/CI.yml

+23-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
name: CI
1+
name: GridTools Ubuntu CI Pipeline
2+
23
on:
34
push:
45
branches:
56
- main
67
tags: ['*']
78
pull_request:
9+
810
concurrency:
9-
# Skip intermediate builds: always.
10-
# Cancel intermediate builds: only if it is a pull request build.
1111
group: ${{ github.workflow }}-${{ github.ref }}
1212
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
13+
1314
jobs:
1415
test:
1516
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -19,36 +20,49 @@ jobs:
1920
matrix:
2021
julia_version:
2122
- '1.8'
22-
#- 'nightly'
2323
python_version:
2424
- '3.10'
2525
os:
2626
- ubuntu-latest
2727
arch:
2828
- x64
29+
2930
steps:
3031
- uses: actions/checkout@v3
32+
3133
- name: Set up Python ${{ matrix.python_version }}
3234
uses: actions/setup-python@v4
3335
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+
3744
- name: Install GT4Py
3845
run: |
39-
#git clone https://github.com/GridTools/gt4py.git
4046
git clone --branch fix_python_interp_path_in_cmake https://github.com/tehrengruber/gt4py.git
4147
cd gt4py
42-
#git checkout 91307b10e2ca1edb76a72cd8a3bebdd66898da60 # TODO(tehrengruber): remove
4348
pip install -r requirements-dev.txt
4449
pip install .
50+
51+
- name: Install atlas4py
52+
run: |
53+
pip install -i https://test.pypi.org/simple/ atlas4py
54+
4555
- uses: julia-actions/setup-julia@v1
4656
with:
4757
version: ${{ matrix.julia_version }}
4858
arch: ${{ matrix.arch }}
59+
4960
- uses: julia-actions/cache@v1
61+
5062
- uses: julia-actions/julia-buildpkg@v1
63+
5164
- uses: julia-actions/julia-runtest@v1
65+
5266
- name: Archive production artifacts
5367
uses: actions/upload-artifact@v4
5468
if: always()

0 commit comments

Comments
 (0)