From a4219750def1c2aff09f04f4dd41889acb17625a Mon Sep 17 00:00:00 2001 From: Ivet Galabova Date: Wed, 28 Aug 2024 13:30:25 +0300 Subject: [PATCH] fortran test --- .github/workflows/test-fortran-win.yml | 50 ++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/test-fortran-win.yml diff --git a/.github/workflows/test-fortran-win.yml b/.github/workflows/test-fortran-win.yml new file mode 100644 index 0000000000..8defb68c32 --- /dev/null +++ b/.github/workflows/test-fortran-win.yml @@ -0,0 +1,50 @@ +name: test-fortran-ubuntu + +on: [push, pull_request] + +jobs: + fast_build_release: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest] + toolchain: + - {compiler: gcc, version: 13} + - {compiler: intel, version: '2023.2'} + # - {compiler: nvidia-hpc, version: '23.11'} + + steps: + - uses: actions/checkout@v4 + + - uses: fortran-lang/setup-fortran@v1 + id: setup-fortran + with: + compiler: ${{ matrix.toolchain.compiler }} + version: ${{ matrix.toolchain.version }} + + - name: Create Build Environment + run: cmake -E make_directory ${{runner.workspace}}/build + + - name: Configure CMake + shell: bash + working-directory: ${{runner.workspace}}/build + run: cmake $GITHUB_WORKSPACE -DFORTRAN=ON + + - name: Build + shell: bash + working-directory: ${{runner.workspace}}/build + run: cmake --build . --parallel --config Release + + - name: Test + shell: bash + working-directory: ${{runner.workspace}}/build + run: ctest --timeout 300 --output-on-failure -C Release + + - name: Test Fortran + shell: bash + working-directory: ${{runner.workspace}}/build + run: | + ls + ./bin/Release/fortrantest + + \ No newline at end of file