2 Commits

Author SHA1 Message Date
73e7c563e0 bump: v0.0.7 -> v0.0.8 2025-03-18 22:14:11 -04:00
cd3da0aa8f feat: go caching 2025-03-18 22:12:56 -04:00
4 changed files with 10 additions and 16 deletions

View File

@ -18,25 +18,19 @@ jobs:
- name: Install Nix - name: Install Nix
uses: nixbuild/nix-quick-install-action@v30 uses: nixbuild/nix-quick-install-action@v30
- uses: nix-community/cache-nix-action@v6 - name: Restore and save Nix store + go modules
uses: nix-community/cache-nix-action@v6
with: with:
# restore and save a cache using this key
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }} primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }}
# if there's no cache hit, restore a cache by this prefix
restore-prefixes-first-match: nix-${{ runner.os }}- restore-prefixes-first-match: nix-${{ runner.os }}-
# collect garbage until Nix store size (in bytes) is at most this number
# before trying to save a new cache
# 1G = 1073741824
gc-max-store-size-linux: 1G gc-max-store-size-linux: 1G
# do purge caches
purge: true purge: true
# purge all versions of the cache
purge-prefixes: nix-${{ runner.os }}- purge-prefixes: nix-${{ runner.os }}-
# created more than this number of seconds ago
# relative to the start of the `Post Restore and save Nix store` phase
purge-created: 0 purge-created: 0
# except any version with the key that is the same as the `primary-key`
purge-primary-key: never purge-primary-key: never
paths: |
~/.cache/go-build
~/go/pkg/mod
- name: Build - name: Build
run: nix develop --command ts-build run: nix develop --command ts-build

View File

@ -1,12 +1,12 @@
{ {
"name": "trevstack", "name": "trevstack",
"version": "0.0.7", "version": "0.0.8",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "trevstack", "name": "trevstack",
"version": "0.0.7", "version": "0.0.8",
"devDependencies": { "devDependencies": {
"@connectrpc/connect": "^2.0.2", "@connectrpc/connect": "^2.0.2",
"@connectrpc/connect-web": "^2.0.2", "@connectrpc/connect-web": "^2.0.2",

View File

@ -1,7 +1,7 @@
{ {
"name": "trevstack", "name": "trevstack",
"private": true, "private": true,
"version": "0.0.7", "version": "0.0.8",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

View File

@ -15,7 +15,7 @@
let let
pname = "trevstack"; pname = "trevstack";
version = "0.0.7"; version = "0.0.8";
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
@ -38,7 +38,7 @@
pname = "${pname}-client"; pname = "${pname}-client";
inherit version; inherit version;
src = gitignore.lib.gitignoreSource ./client; src = gitignore.lib.gitignoreSource ./client;
npmDepsHash = "sha256-AfXM/oPr4b4D9txgwzZFMJ8dXFugOwETkZAN8/SaTkk="; npmDepsHash = "sha256-sscWJJ64TTMZUQn2Xn7IcOU26SKRTxZY3zdzgT6RMQc=";
nodejs = pkgs.nodejs_22; nodejs = pkgs.nodejs_22;
npmFlags = [ "--legacy-peer-deps" ]; npmFlags = [ "--legacy-peer-deps" ];