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
16 changes: 8 additions & 8 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ task:
matrix:
- name: FreeBSD -- gcc | g++
freebsd_instance:
image: freebsd-14-2-release-amd64
image: freebsd-14-0-release-amd64-ufs
env:
cc: gcc14
cxx: g++14
cc: gcc13
cxx: g++13
- name: FreeBSD -- clang | clang++
freebsd_instance:
image: freebsd-14-2-release-amd64
image: freebsd-14-0-release-amd64-ufs
env:
cc: clang
cxx: clang++
- name: MacOS M1 -- gcc | g++
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
env:
cc: gcc-14
cxx: g++-14
cc: gcc-13
cxx: g++-13
- name: MacOS M1 -- clang | clang++
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
Expand All @@ -27,9 +27,9 @@ task:
dependencies_script: |
echo $(uname)
if [ "$(uname)" = "FreeBSD" ]; then
pkg install -y cmake bash gcc14
pkg install -y cmake bash gcc13
else
brew install cmake gcc14
brew install cmake gcc@13
fi
configure_script: |
mkdir instdir
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ jobs:
pip install --force-reinstall dist/*.whl
pytest

# - name: Upload
# uses: actions/upload-artifact@v2
# with:
# name: ${{ matrix.config.os }}
# path: build
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.os }}
path: build
Loading