removed unused coeffs #124
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: cmake ci linux macos windows | |
on: | |
push: | |
release: | |
types: [published] | |
jobs: | |
cmake-ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-2022 | |
- ubuntu-22.04 | |
- macos-13 | |
compiler: | |
- llvm | |
- gcc-12 | |
# you can specify the version after `-` like `llvm-13.0.0`. | |
generator: | |
- "Ninja" | |
build_type: | |
- Release | |
finufft_static_linking: | |
- ON | |
include: | |
- os: "windows-2022" | |
compiler: "msvc" | |
generator: "Ninja" | |
build_type: "Release" | |
finufft_static_linking: "OFF" | |
exclude: | |
- os: "windows-2022" | |
compiler: "gcc-12" | |
generator: "Ninja" | |
build_type: "Release" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Unlink gcc | |
if: runner.os == 'macOS' | |
run: | | |
brew unlink gcc | |
continue-on-error: true | |
- name: Setup Cpp | |
uses: aminya/setup-cpp@v1 | |
with: | |
compiler: ${{ matrix.compiler }} | |
vcvarsall: ${{ contains(matrix.os, 'windows') }} | |
cmake: true | |
ninja: true | |
vcpkg: false | |
cppcheck: false | |
clangtidy: false | |
- name: Install macOS dependencies | |
if: runner.os == 'macOS' | |
run: | | |
brew install fftw | |
- name: Configure Cmake | |
run: | | |
cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DFINUFFT_BUILD_TESTS=ON -DFINUFFT_STATIC_LINKING=${{matrix.finufft_static_linking}} | |
- name: Build | |
run: | | |
cmake --build ./build --config ${{matrix.build_type}} | |
- name: Test | |
working-directory: ./build | |
run: | | |
ctest -C ${{matrix.build_type}} | |
# may change to cpack and action-gh-release later | |
- name: Upload static and shared lib | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{matrix.os}}-${{matrix.compiler}}-finufft-lib | |
path: ${{runner.workspace}}/finufft/build/*finufft* | |
- name: Pack For Release | |
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'release' && github.event.action == 'published' | |
shell: bash | |
run: | | |
cd build | |
if [[ "${{ matrix.os }}" == "windows-2022" ]] | |
then | |
7z a ../${{matrix.os}}-${{matrix.compiler}}-finufft-lib.zip *finufft* | |
else | |
tar czvf ../${{matrix.os}}-${{matrix.compiler}}-finufft-lib.tar.gz *finufft* | |
fi | |
cd - | |
- name: Publish | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'release' && github.event.action == 'published' | |
with: | |
files: | | |
*-finufft-lib* |