Add quickstart section to readme #23
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 | |
EXPORT_BUILD_DIR: _build_export | |
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 CMake | |
uses: jwlawson/[email protected] | |
- name: Setup Ninja | |
uses: ashutoshvarma/[email protected] | |
- 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} | |
- name: Test CMake export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
CMAKE_PREFIX_PATH=${INSTALL_DIR} cmake -B ${EXPORT_BUILD_DIR} -G Ninja test/export | |
cmake --build ${EXPORT_BUILD_DIR} | |
${EXPORT_BUILD_DIR}/testapp | |
- name: Test PkgConfig export | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
export LD_LIBRARY_PATH="${INSTALL_DIR}/lib:${LD_LIBRARY_PATH}" | |
export PKG_CONFIG_PATH="${INSTALL_DIR}/lib/pkgconfig:${PKG_CONFIG_PATH}" | |
cflags="$(pkg-config --cflags fortuno)" | |
lflags="$(pkg-config --libs fortuno)" | |
ifx ${cflags} ${lflags} -o testapp test/export/app/testapp.f90 | |
./testapp | |
rm ./testapp | |
- 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 |