Add meson build #34
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] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
env: | |
BUILD_DIR: _build | |
INSTALL_DIR: _install | |
jobs: | |
# | |
# Builds and tests with CMake | |
# | |
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 | |
# uses: jwlawson/[email protected] | |
# - name: Setup Ninja | |
# uses: ashutoshvarma/[email protected] | |
- name: Setup build tools | |
run: | | |
pip install cmake fpm meson ninja | |
cmake --version | |
fpm --version | |
meson --version | |
ninja --version | |
- 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: Setup fpm | |
uses: fortran-lang/setup-fpm@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Test fpm export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
cd test/export | |
fpm run testapp | |
- name: Setup meson | |
run: pip install meson | |
- 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} | |
cd test/export | |
mkdir subprojects | |
echo "[wrap-git]\ndirectory=fortuno" > subprojects/fortuno.wrap | |
echo "url=file://${FORTUNO_DIR}\nrevision=meson" >> subprojects/fortuno.wrap | |
meson setup -Dfortuno_subproject=true ${BUILD_DIR} | |
ninja -C ${BUILD_DIR} | |
${BUILD_DIR}/testapp | |
rm -rf subprojects ${BUILD_DIR} |