Release v3.0.0 #253
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: Run Tests | |
on: # run on every push to main and develop, and on every pull request to main and develop | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
julia-version: ["1.8.0", "1.9.0", "1.10.0"] | |
julia-arch: [x64, x86] | |
steps: | |
- name: Install Julia | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
- uses: actions/checkout@v4 | |
- name: Build Package | |
uses: julia-actions/julia-buildpkg@v1 | |
run_tests: | |
runs-on: ubuntu-latest | |
container: precice/precice:develop | |
needs: [build] | |
strategy: | |
fail-fast: false | |
matrix: | |
julia-version: ["1.8.0", "1.9.0", "1.10.0"] | |
julia-arch: [x64, x86] | |
steps: | |
- name: Install Julia | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
- uses: actions/checkout@v4 | |
- name: Build Package | |
uses: julia-actions/julia-buildpkg@v1 | |
- name: Build fake Solverinterface | |
run: | | |
cd test | |
make | |
- name: Add libprecice to LD_LIBRARY_PATH and adjust LD_PRELOAD | |
run: | | |
echo "LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV | |
echo "LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6:/usr/lib/x86_64-linux-gnu/libcurl.so.4" >> $GITHUB_ENV | |
- name: Run tests | |
uses: julia-actions/julia-runtest@v1 |