File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -125,3 +125,28 @@ jobs:
125
125
mv json_*.F90.gcov src/
126
126
mv jf_test*.[fF]90.gcov src/tests/
127
127
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
You can’t perform that action at this time.
0 commit comments