Skip to content

Commit e9473f4

Browse files
committedMay 19, 2024·
just a test of flang-new from conda-forge
1 parent fff5372 commit e9473f4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
 

‎.github/workflows/CI.yml

+25
Original file line numberDiff line numberDiff line change
@@ -125,3 +125,28 @@ jobs:
125125
mv json_*.F90.gcov src/
126126
mv jf_test*.[fF]90.gcov src/tests/
127127
bash <(curl -s https://codecov.io/bash) -v -X $GCOV
128+
129+
Flang-build:
130+
runs-on: ${{ matrix.os }}
131+
strategy:
132+
fail-fast: false
133+
matrix:
134+
os: [ubuntu-latest]
135+
python-version: [3.11]
136+
include:
137+
- os: ubuntu-latest
138+
toolchain: {compiler: gcc, version: 13}
139+
defaults:
140+
run:
141+
shell: bash -el {0}
142+
steps:
143+
- name: Checkout
144+
uses: actions/checkout@v4.1.6
145+
with:
146+
submodules: recursive
147+
- name: Setup Miniconda
148+
uses: conda-incubator/setup-miniconda@v3.0.4
149+
with:
150+
python-version: ${{ matrix.python-version }}
151+
- run: conda create -c conda-forge -c nodefaults fpm flang --prefix ./env
152+
- run: conda activate ./env; export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./env/lib; fpm run --compiler flang-new

0 commit comments

Comments
 (0)