chore(deps): bump to latest quarto and also bump other deps and regen lockfiles #20161
Workflow file for this run
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: Nix | |
on: | |
push: | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.qmd" | |
- ".envrc" | |
branches: | |
- main | |
- "*.x.x" | |
pull_request: | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.qmd" | |
- ".envrc" | |
branches: | |
- main | |
- "*.x.x" | |
merge_group: | |
concurrency: | |
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
nix: | |
runs-on: ${{ matrix.os }} | |
name: nix (${{ matrix.os }}, ${{ matrix.python-version }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest # x86_64-linux | |
- ubuntu-arm64-24.04-medium # aarch64-linux | |
- macos-13 # x86_64-darwin | |
- macos-14 # aarch64-darwin | |
python-version: | |
- "3.12" | |
- "3.13" | |
include: | |
- os: ubuntu-latest | |
python-version: "3.10" | |
- os: ubuntu-latest | |
python-version: "3.11" | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable-small | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- name: setup cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: ibis | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
extraPullNames: nix-community | |
- name: nix build environment | |
run: | | |
set -euo pipefail | |
version='${{ matrix.python-version }}' | |
nix build ".#ibis${version//./}" --fallback --keep-going --print-build-logs | |
- name: nix test | |
run: | | |
set -euo pipefail | |
version='${{ matrix.python-version }}' | |
nix build ".#ibis${version//./}.passthru.tests.pytest" --fallback --keep-going --print-build-logs | |
- name: nix build devShell | |
run: | | |
set -euo pipefail | |
version='${{ matrix.python-version }}' | |
host_system="$(nix eval --raw 'nixpkgs#stdenv.hostPlatform.system')" | |
flake=".#devShells.${host_system}.ibis${version//./}" | |
args=("--fallback" "--keep-going" "--print-build-logs") | |
if [[ "${{ github.event_name }}" != "push" ]]; then | |
args+=("--dry-run") | |
fi | |
nix build "$flake" "${args[@]}" |