Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -513,14 +513,14 @@ jobs:

push-docker-images:
name: push-docker-images
if: ${{ inputs.github_event_name == 'push' }}
if: ${{ inputs.flow == 'push' }}
needs:
- draft-release-check
runs-on:
- x86_64-linux-32C-128GB-2TB
concurrency:
group: ${{ inputs.github_workflow }}-push-docker-images-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
group: ${{inputs.flow}}-${{ inputs.github_workflow }}-push-docker-images-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: false
steps:
- name: Set up Cachix
uses: cachix/cachix-action@586bf280495080c5a6d4868237ad28a860e4b309
Expand Down
24 changes: 12 additions & 12 deletions flake/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ set -o errexit
adduser actions-runner --disabled-password && passwd --delete actions-runner
sh <(curl -L https://nixos.org/nix/install) --daemon --yes && source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
cat > /etc/nix/nix.conf << EOF
experimental-features = nix-command flakes
sandbox = relaxed
narinfo-cache-negative-ttl = 0
system-features = kvm
trusted-users = root actions-runner
max-jobs = 1
cores = 64
auto-optimise-store = true
# keep-derivations = true
# keep-outputs = true
allow-import-from-derivation = true
auto-optimise-store = true
cores = 64
experimental-features = nix-command flakes
gc-reserved-space = 18388608
http-connections = 32
http2 = true
min-free = 100000000000
max-free = 1000000000000
# keep-outputs = true
# keep-derivations = true
max-jobs = 1
min-free = 100000000000
narinfo-cache-negative-ttl = 0
sandbox = relaxed
system-features = kvm
trusted-users = root actions-runner
EOF
service nix-daemon restart
apt-get update && apt-get install apt-transport-https qemu-system-x86 ca-certificates curl gnupg software-properties-common --yes
Expand All @@ -54,7 +54,7 @@ su actions-runner
## User

```bash
nix profile install "nixpkgs#git" "nixpkgs#git-lfs" "nixpkgs#cachix" "nixpkgs#process-compose" "nixpkgs#dasel"
nix profile install "nixpkgs#git" "nixpkgs#git-lfs" "nixpkgs#cachix" "nixpkgs#process-compose" "nixpkgs#dasel" "nixpkgs#nix-tree"
```

### x84_64
Expand Down