From 3d51786785169736797a60a066f73077b88a98c3 Mon Sep 17 00:00:00 2001 From: Christophe Tribes Date: Mon, 27 Jan 2025 14:53:37 -0500 Subject: [PATCH 1/3] Update ci.yml --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce1d7728..278675f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 From d39bdf2bce258a86b68fa73eb71f363ef4c3fded Mon Sep 17 00:00:00 2001 From: Christophe Tribes Date: Mon, 27 Jan 2025 14:58:23 -0500 Subject: [PATCH 2/3] Update .cirrus.yml --- .cirrus.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 6d026f33..4b346a56 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -2,13 +2,13 @@ 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 - name: FreeBSD -- clang | clang++ freebsd_instance: - image: freebsd-14-2-release-amd64 + image: freebsd-14-0-release-amd64-ufs env: cc: clang cxx: clang++ From 0405ef37afcea34101286e2a3e9a612e417d6a0a Mon Sep 17 00:00:00 2001 From: Christophe Tribes Date: Mon, 27 Jan 2025 15:00:49 -0500 Subject: [PATCH 3/3] Update .cirrus.yml --- .cirrus.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 4b346a56..94426bba 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -4,8 +4,8 @@ task: freebsd_instance: 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-0-release-amd64-ufs @@ -16,8 +16,8 @@ task: 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 @@ -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