forked from pyccel/pyccel
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (92 loc) · 2.83 KB
/
anaconda_windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Anaconda-Windows
on:
workflow_dispatch:
inputs:
python_version:
required: true
type: string
ref:
required: false
type: string
check_run_id:
required: false
type: string
pr_repo:
required: false
type: string
push:
branches: [devel, main]
env:
COMMIT: ${{ inputs.ref || github.event.ref }}
PEM: ${{ secrets.BOT_PEM }}
GITHUB_RUN_ID: ${{ github.run_id }}
GITHUB_CHECK_RUN_ID: ${{ inputs.check_run_id }}
PR_REPO: ${{ inputs.pr_repo || github.repository }}
jobs:
Python_version_picker:
runs-on: windows-latest
if: github.event_name != 'push' || github.repository == 'pyccel/pyccel-cuda'
outputs:
python_version: ${{ steps.set-python_version.outputs.python_version }}
steps:
- if: github.event_name == 'push'
run: |
echo "version=3.9" >> $GITHUB_ENV
shell: bash
- id: dispatch-matrix
if: github.event_name == 'workflow_dispatch'
run: |
echo "version=${{ inputs.python_version }}" >> $GITHUB_ENV
shell: bash
- id: set-python_version
run: |
echo "python_version=$version" >> $GITHUB_OUTPUT
shell: bash
Anaconda-Windows:
runs-on: windows-latest
name: Unit tests
needs: Python_version_picker
steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.COMMIT }}
repository: ${{ env.PR_REPO }}
submodules: true
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
python-version: ${{ needs.Python_version_picker.outputs.python_version }}
- name: Install dependencies
uses: ./.github/actions/windows_install
- name: Install python dependencies
uses: ./.github/actions/conda_installation
with:
mpi_type: msmpi
- name: "Setup"
if: github.event_name != 'push'
id: token
run: |
python -m pip install jwt requests
python ci_tools/setup_check_run.py anaconda_windows
shell: bash -l -eo pipefail {0}
- name: Fortran/C tests with pytest
id: f_c_pytest
timeout-minutes: 60
uses: ./.github/actions/pytest_run
with:
shell_cmd: 'bash -l -eo pipefail {0}'
pytest_mark: 'and not external'
- name: Python tests with pytest
id: python_pytest
timeout-minutes: 20
uses: ./.github/actions/pytest_run_python
with:
shell_cmd: 'bash -l -eo pipefail {0}'
- name: "Post completed"
if: always() && github.event_name != 'push'
run: |
which python
python --version
python ci_tools/complete_check_run.py ${{ steps.f_c_pytest.outcome }} ${{ steps.python_pytest.outcome }}
shell: bash -l -eo pipefail {0}