Skip to content

Commit

Permalink
Merge pull request #95 from stephank/fix-ci
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
stephank authored Dec 11, 2024
2 parents 7350cf7 + 0b3b015 commit bfef08c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ jobs:
src = ./.;
overrideSqlite3Attrs = old: {
npm_config_sqlite = "/"; # Don't accidentally use the wrong sqlite.
buildInputs = old.buildInputs ++ (with pkgs; [ python3 sqlite ]);
nativeBuildInputs = [ pkgs.python311 ];
buildInputs = old.buildInputs ++ [ pkgs.sqlite ];
};
}
EOF
Expand Down
3 changes: 2 additions & 1 deletion ISOLATED_BUILDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ pkgs.callPackage ./yarn-project.nix { } {
src = ./.;
overrideSqlite3Attrs = old: {
npm_config_sqlite = "/"; # Don't accidentally use the wrong sqlite.
buildInputs = old.buildInputs ++ (with pkgs; [ python3 sqlite ]);
nativeBuildInputs = [ pkgs.python311 ];
buildInputs = old.buildInputs ++ [ pkgs.sqlite ];
};
}
```
Expand Down

0 comments on commit bfef08c

Please sign in to comment.