Skip to content

Bump curl-sys from 0.4.74+curl-8.9.0 to 0.4.76+curl-8.10.1 #516

Bump curl-sys from 0.4.74+curl-8.9.0 to 0.4.76+curl-8.10.1

Bump curl-sys from 0.4.74+curl-8.9.0 to 0.4.76+curl-8.10.1 #516

Workflow file for this run

name: "CI (nix)"
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: "sparse"
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "master", "devel" ]
pull_request:
branches: [ "main", "master", "devel" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V27
with:
nix_path: nixpkgs=channel:nixos-23.05
- uses: cachix/cachix-action@v15
with:
name: cargo-crev
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build workspace
run: nix build -L --extra-experimental-features nix-command --extra-experimental-features flakes .#workspaceBuild
# - name: Clippy workspace
# run: nix build -L --extra-experimental-features nix-command --extra-experimental-features flakes .#workspaceClippy
- name: Run cargo doc
run: nix build -L --extra-experimental-features nix-command --extra-experimental-features flakes .#workspaceDoc
- name: Test workspace
run: nix build -L --extra-experimental-features nix-command --extra-experimental-features flakes .#workspaceTest
containers:
name: "Containers"
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V27
with:
nix_path: nixpkgs=channel:nixos-23.05
- uses: cachix/cachix-action@v15
with:
name: cargo-crev
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build cargo-crev container
run: |
nix build -L --extra-experimental-features nix-command --extra-experimental-features flakes .#container.cargo-crev
echo "cargo-crev_container_tag=$(docker load < result | awk '{ print $3 }')" >> $GITHUB_ENV