WIP: move cx impl into non-member functions in simd_complex.h #56
This file contains hidden or 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
| # SPDX-License-Identifier: GPL-3.0-or-later | |
| # Copyright © 2025 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH | |
| # Matthias Kretz <[email protected]> | |
| name: GCC | |
| on: | |
| push: | |
| branches: [ main, rewrite ] | |
| pull_request: | |
| jobs: | |
| gcc: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: [16] | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/mattkretz/cplusplus-ci/gcc${{ matrix.version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run test suite | |
| env: | |
| CXX: g++ | |
| run: make -j2 ci |