Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ jobs:
cmake --version
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: failure()
with:
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CMakeCache
path: ${{ env.FANS_BUILD_DIR }}/CMakeCache.txt
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: failure()
with:
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CMakeLogs
path: '${{ env.FANS_BUILD_DIR }}/CMakeFiles/*.log'
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: failure()
with:
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CompileCommands
Expand All @@ -75,7 +75,7 @@ jobs:
run: |
su -c "ctest" ${{ env.FANS_MPI_USER }}

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: failure()
with:
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CTest logs
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Run pytest checks on HDF5 output
run: pixi run -e dashboard pytest

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: failure()
with:
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} PyTest logs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pixi_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
run: pixi run test

- name: Upload test logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.os }} test-logs
path: test/output/*.log

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: failure()
with:
name: ${{ matrix.os }} PyTest logs
Expand Down
24 changes: 18 additions & 6 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ extra-args = [
]

[workspace.target.osx-arm64.build-variants]
cxx_compiler = ["clangxx"]

[workspace.target.linux-64.build-variants]
cxx_compiler = ["clangxx"]
Expand Down
Loading