Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
f7a50cf
Try gh_workflow generation
ConradIrwin Oct 24, 2025
f32fc2b
Try using gh_workflow to generate workflows
ConradIrwin Oct 25, 2025
a3647e4
Convert nix too
ConradIrwin Oct 25, 2025
3425fce
Fix
ConradIrwin Oct 25, 2025
2a08213
Fix env :/
ConradIrwin Oct 25, 2025
4f01f13
similar...
ConradIrwin Oct 25, 2025
7b885e3
Ugh, actually regenerate
ConradIrwin Oct 25, 2025
40201fe
Fix typos, move gh-workflow to zed
ConradIrwin Oct 27, 2025
de86ae2
More happier
ConradIrwin Oct 27, 2025
d24ab38
Start to port bundling
ConradIrwin Oct 27, 2025
2c01f31
Move run bundling out of CI
ConradIrwin Oct 27, 2025
9d65290
TEMP
ConradIrwin Oct 27, 2025
4fa3f1c
wip: windows
probably-neb Oct 27, 2025
6e9fedf
fix named::run
probably-neb Oct 27, 2025
8b38b6b
run xtask
probably-neb Oct 27, 2025
62a77f7
Merge branch 'main' into gh-workflow-bundling
ConradIrwin Oct 27, 2025
e117a21
UNclone
ConradIrwin Oct 27, 2025
4b65c5c
Don't upload symbols to DO anymore
ConradIrwin Oct 27, 2025
5063b26
oops
ConradIrwin Oct 27, 2025
6b90793
Fix bundling?
ConradIrwin Oct 27, 2025
02f733a
oops
ConradIrwin Oct 27, 2025
5a14437
Merge branch 'main' into gh-workflow-bundling
ConradIrwin Oct 28, 2025
22aa420
doto
ConradIrwin Oct 28, 2025
00ddb19
Tidy up naming some more
ConradIrwin Oct 28, 2025
01f468f
Fix naming more
ConradIrwin Oct 28, 2025
756d52e
oh yeah...
ConradIrwin Oct 28, 2025
0f7bab5
ugh names...
ConradIrwin Oct 28, 2025
5d023bf
Merge branch 'main' into gh-workflow-bundling
ConradIrwin Oct 28, 2025
c6b83df
Move windows arm64 over too
ConradIrwin Oct 28, 2025
8c5b4ea
Remove old conditions
ConradIrwin Oct 28, 2025
88f0bfa
Don't OOM?
ConradIrwin Oct 28, 2025
d07b99f
Release nightly?
ConradIrwin Oct 28, 2025
b40a27e
Merge remote-tracking branch 'origin/main' into gh-workflow-nightly
ConradIrwin Oct 28, 2025
22483a0
Restore name
ConradIrwin Oct 28, 2025
9c2321d
booleans
ConradIrwin Oct 28, 2025
c884575
Fix nightly?
ConradIrwin Oct 28, 2025
397daf9
foiled again
ConradIrwin Oct 28, 2025
42d844e
Wait to build nix until tests pass
ConradIrwin Oct 28, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: steps::checkout_repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
clean: 'false'
clean: false
- name: steps::setup_pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/nix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ on:
cachix-filter:
type: string
jobs:
nix-build-linux-x86:
build_nix_linux_x86_64:
if: github.repository_owner == 'zed-industries'
runs-on: namespace-profile-16x32-ubuntu-2204
runs-on: namespace-profile-32x64-ubuntu-2004
env:
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
ZED_MINIDUMP_ENDPOINT: ${{ secrets.ZED_SENTRY_MINIDUMP_ENDPOINT }}
Expand All @@ -22,7 +22,7 @@ jobs:
- name: steps::checkout_repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
clean: 'false'
clean: false
- name: nix_build::install_nix
uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f
with:
Expand All @@ -32,14 +32,14 @@ jobs:
with:
name: zed
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
pushFilter: ${{ inputs.cachix-filter }}
cachixArgs: -v
pushFilter: ${{ inputs.cachix-filter }}
- name: nix_build::build
run: nix build .#${{ inputs.flake-output }} -L --accept-flake-config
shell: bash -euxo pipefail {0}
timeout-minutes: 60
continue-on-error: true
nix-build-mac-arm:
build_nix_mac_aarch64:
if: github.repository_owner == 'zed-industries'
runs-on: self-mini-macos
env:
Expand All @@ -51,7 +51,7 @@ jobs:
- name: steps::checkout_repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
clean: 'false'
clean: false
- name: nix_build::set_path
run: |
echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH"
Expand All @@ -62,8 +62,8 @@ jobs:
with:
name: zed
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
pushFilter: ${{ inputs.cachix-filter }}
cachixArgs: -v
pushFilter: ${{ inputs.cachix-filter }}
- name: nix_build::build
run: nix build .#${{ inputs.flake-output }} -L --accept-flake-config
shell: bash -euxo pipefail {0}
Expand Down
Loading
Loading