Add meson build #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
paths-ignore: ['LICENSE', 'README.rst'] | |
pull_request: | |
branches: [main] | |
paths-ignore: ['LICENSE', 'README.rst'] | |
workflow_dispatch: | |
env: | |
BUILD_DIR: _build | |
INSTALL_DIR: _install | |
jobs: | |
# | |
# Test project on Ubuntu with Intel ifx compiler | |
# | |
ubuntu-ifx: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check-out code | |
uses: actions/checkout@v3 | |
- name: Setup Intel oneAPI | |
uses: rscohn2/setup-oneapi@v0 | |
with: | |
components: ifx | |
- name: Set compiler environment | |
run: | | |
echo "FC=ifx" >> ${GITHUB_ENV} | |
echo "FPM_FC=ifx" >> ${GITHUB_ENV} | |
- name: Setup build tools | |
run: | | |
pip install cmake fpm meson ninja | |
- name: Build Fortuno | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
cmake -B ${BUILD_DIR} -G Ninja -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} | |
cmake --build ${BUILD_DIR} | |
cmake --install ${BUILD_DIR} | |
rm -rf ${BUILD_DIR} | |
- name: Test CMake export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
CMAKE_PREFIX_PATH=${INSTALL_DIR} cmake -B ${BUILD_DIR} -G Ninja test/export | |
cmake --build ${BUILD_DIR} | |
${BUILD_DIR}/testapp | |
rm -rf ${BUILD_DIR} | |
- name: Test PkgConfig export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
export LD_LIBRARY_PATH="${PWD}/${INSTALL_DIR}/lib:${LD_LIBRARY_PATH}" | |
export PKG_CONFIG_PATH="${PWD}/${INSTALL_DIR}/lib/pkgconfig:${PKG_CONFIG_PATH}" | |
cflags="$(pkg-config --cflags fortuno)" | |
lflags="$(pkg-config --libs fortuno)" | |
mkdir ${BUILD_DIR} | |
pushd ${BUILD_DIR} | |
ifx ${cflags} ${lflags} -o testapp ../test/export/app/testapp.f90 | |
./testapp | |
popd | |
rm -rf ${BUILD_DIR} | |
- name: Test fpm export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
cd test/export | |
fpm run testapp | |
- name: Test meson PkgConfig export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
export PKG_CONFIG_PATH="${PWD}/${INSTALL_DIR}/lib/pkgconfig:${PKG_CONFIG_PATH}" | |
cd test/export | |
meson setup -Dfortuno_subproject=false ${BUILD_DIR} | |
ninja -C ${BUILD_DIR} | |
${BUILD_DIR}/testapp | |
rm -rf ./${BUILD_DIR} | |
- name: Test meson subproject export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
FORTUNO_DIR=${PWD} | |
GIT_REV=$(git rev-parse HEAD) | |
cd test/export | |
mkdir subprojects | |
echo -e "[wrap-git]\ndirectory=fortuno\n" > subprojects/fortuno.wrap | |
echo -e "url=file://${FORTUNO_DIR}\nrevision=${GIT_REV}\n" >> subprojects/fortuno.wrap | |
meson setup -Dfortuno_subproject=true ${BUILD_DIR} | |
ninja -C ${BUILD_DIR} | |
${BUILD_DIR}/testapp | |
rm -rf subprojects ${BUILD_DIR} |