Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
conduwuit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
🥺
conduwuit
Merge requests
!526
Nix stuff, target optimised static binary builds + rename `conduit_cache_capacity_modifier` to `cache_capacity_modifier`
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Imported
Nix stuff, target optimised static binary builds + rename `conduit_cache_capacity_modifier` to `cache_capacity_modifier`
strawberry/nix-stuff
into
main
Overview
0
Commits
18
Pipelines
0
Changes
19
Merged
Imported
Import User
requested to merge
strawberry/nix-stuff
into
main
8 months ago
Overview
0
Commits
18
Pipelines
0
Changes
19
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
f79bd2ac
18 commits,
1 month ago
19 files
+
189
−
101
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
Search (e.g. *.vue) (Ctrl+P)
.github/workflows/ci.yml
+
7
−
4
Options
@@ -38,8 +38,11 @@ env:
# Custom nix binary cache if fork is being used
ATTIC_ENDPOINT
:
${{ vars.ATTIC_ENDPOINT }}
ATTIC_PUBLIC_KEY
:
${{ vars.ATTIC_PUBLIC_KEY }}
# Get error output from nix that we can actually use
NIX_CONFIG
:
show-trace =
true
# Get error output from nix that we can actually use, and use our binary caches for the earlier CI steps
NIX_CONFIG
:
|
show-trace = true
extra-substituters = https://attic.kennel.juneis.dog/conduit https://attic.kennel.juneis.dog/conduwuit https://cache.lix.systems https://conduwuit.cachix.org
extra-trusted-public-keys = conduit:eEKoUwlQGDdYmAI/Q/0slVlegqh/QmAvQd7HBSm21Wk= conduwuit:BbycGUgTISsltcmH0qNjFR9dbrQNYgdIAcmViSGoVTE= cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o= conduwuit.cachix.org-1:MFRm6jcnfTf0jSAbmvLfhO3KBMt4px+1xaereWXp8Xg=
permissions
:
packages
:
write
@@ -115,7 +118,7 @@ jobs:
-
name
:
Prepare build environment
run
:
|
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
nix profile install
--impure
--inputs-from . nixpkgs#direnv nixpkgs#nix-direnv
nix profile install --inputs-from . nixpkgs#direnv nixpkgs#nix-direnv
direnv allow
nix develop .#all-features --command true
@@ -237,7 +240,7 @@ jobs:
-
name
:
Prepare build environment
run
:
|
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
nix profile install
--impure
--inputs-from . nixpkgs#direnv nixpkgs#nix-direnv
nix profile install --inputs-from . nixpkgs#direnv nixpkgs#nix-direnv
direnv allow
nix develop .#all-features --command true
Loading