Skip to content
Snippets Groups Projects
Select Git revision
  • c1b35ca4d5df2b2052224274c26bea7a8eee8ac5
  • develop default protected
  • feature/advection
  • feature/composite-scheme-other-fluxes
  • origin/stage/bouguettaia
  • save_clemence
  • feature/local-dt-fsi
  • feature/variational-hydro
  • feature/gmsh-reader
  • feature/reconstruction
  • feature/kinetic-schemes
  • feature/composite-scheme-sources
  • feature/serraille
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

windows.yml

Blame
  • Stephane Del Pino's avatar
    Stéphane Del Pino authored
    subrepo:
      subdir:   "packages/PEGTL"
      merged:   "23b9a9a1c"
    upstream:
      origin:   "git@github.com:taocpp/PEGTL.git"
      branch:   "main"
      commit:   "dc3d82928"
    git-subrepo:
      version:  "0.4.6"
      origin:   "git@github.com:ingydotnet/git-subrepo.git"
      commit:   "110b9eb"
    c1b35ca4
    History
    windows.yml 2.21 KiB
    name: Windows
    
    on:
      push:
        paths-ignore:
          - 'README.md'
          - 'doc/**'
      pull_request:
        paths-ignore:
          - 'README.md'
          - 'doc/**'
    
    jobs:
      vs2022:
        strategy:
          fail-fast: false
          matrix:
            build_type: [Debug, Release]
    
        runs-on: windows-latest
    
        steps:
        - uses: actions/checkout@v3
    
        - run: cmake -E make_directory build
    
        - shell: bash
          working-directory: build/
          run: cmake $GITHUB_WORKSPACE -G "Visual Studio 17 2022"
    
        - working-directory: build/
          run: cmake --build . --config ${{ matrix.build_type }}
    
        - working-directory: build/
          run: ctest -C ${{ matrix.build_type }} --output-on-failure
    
      vs2022-clang:
        strategy:
          fail-fast: false
          matrix:
            build_type: [Debug, Release]
    
        runs-on: windows-latest
    
        steps:
        - uses: actions/checkout@v3
    
        - run: cmake -E make_directory build
    
        - shell: bash
          working-directory: build/
          run: cmake $GITHUB_WORKSPACE -G "Visual Studio 17 2022" -T ClangCL
    
        - working-directory: build/
          run: cmake --build . --config ${{ matrix.build_type }}
    
        - working-directory: build/
          run: ctest -C ${{ matrix.build_type }} --output-on-failure
    
      vs2019:
        strategy:
          fail-fast: false
          matrix:
            build_type: [Debug, Release]
    
        runs-on: windows-2019
    
        steps:
        - uses: actions/checkout@v3