rm spurious override of nixpkgs from flake-utils input; cleanup ci-cachix.yml

This commit is contained in:
Quinn Dougherty 2022-08-30 09:34:35 +08:00
parent 8319a484ac
commit 73e1f0b206
2 changed files with 7 additions and 9 deletions

View File

@ -1,4 +1,4 @@
name: Builds, lints, tests in nix
name: Nix build
on: [push, pull_request]
@ -12,12 +12,13 @@ jobs:
- name: Install nix
uses: cachix/install-nix-action@v17
with:
nix_path: nixpkgs=channel:nixos-unstable
nix_path: nixpkgs=channel:nixos-22.05
- name: Use cachix
uses: cachix/cachix-action@v10
with:
name: quantified-uncertainty
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Check that lang lints
run: nix build .#lang-lint
- name: Check that components lints
@ -27,10 +28,10 @@ jobs:
- name: Check that vscode extension lints
run: nix build .#vscode-lint
- name: Check that lang bundles
run: nix build .#lang-bundle
- name: Check all lang tests
run: nix build .#lang-test
- name: Check that lang bundles
run: nix build .#lang-bundle
- name: Check that components builds
run: nix build .#components
- name: Check that components bundles

View File

@ -1,5 +1,5 @@
{
description = "Squiggle CI";
description = "Squiggle packages";
inputs = {
nixpkgs.url = "nixpkgs/nixos-22.05";
@ -7,10 +7,7 @@
url = github:quinn-dougherty/genType;
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils = {
url = github:numtide/flake-utils;
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = github:numtide/flake-utils;
};
outputs = { self, nixpkgs, gentype, flake-utils }: