-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial unofficial release for windows
- Loading branch information
0 parents
commit d724cc4
Showing
2,133 changed files
with
465,419 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This config is different from config.toml in this directory, as the latter is recognized by Cargo. | ||
# This file is placed in $HOME/.cargo/config.toml on CI runs. Cargo then merges Zeds .cargo/config.toml with $HOME/.cargo/config.toml | ||
# with preference for settings from Zeds config.toml. | ||
# TL;DR: If a value is set in both ci-config.toml and config.toml, config.toml value takes precedence. | ||
# Arrays are merged together though. See: https://doc.rust-lang.org/cargo/reference/config.html#hierarchical-structure | ||
# The intent for this file is to configure CI build process with a divergance from Zed developers experience; for example, in this config file | ||
# we use `-D warnings` for rustflags (which makes compilation fail in presence of warnings during build process). Placing that in developers `config.toml` | ||
# would be incovenient. | ||
# We *could* override things like RUSTFLAGS manually by setting them as environment variables, but that is less DRY; worse yet, if you forget to set proper environment variables | ||
# in one spot, that's going to trigger a rebuild of all of the artifacts. Using ci-config.toml we can define these overrides for CI in one spot and not worry about it. | ||
[build] | ||
rustflags = ["-D", "warnings"] | ||
|
||
[alias] | ||
xtask = "run --package xtask --" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build] | ||
# v0 mangling scheme provides more detailed backtraces around closures | ||
rustflags = ["-C", "symbol-mangling-version=v0", "--cfg", "tokio_unstable"] | ||
|
||
[alias] | ||
xtask = "run --package xtask --" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
We have two cloudflare workers that let us serve some assets of this repo | ||
from Cloudflare. | ||
|
||
* `open-source-website-assets` is used for `install.sh` | ||
* `docs-proxy` is used for `https://zed.dev/docs` | ||
|
||
On push to `main`, both of these (and the files they depend on) are uploaded to Cloudflare. | ||
|
||
### Deployment | ||
|
||
These functions are deployed on push to main by the deploy_cloudflare.yml workflow. Worker Rules in Cloudflare intercept requests to zed.dev and proxy them to the appropriate workers. | ||
|
||
### Testing | ||
|
||
You can use [wrangler](https://developers.cloudflare.com/workers/cli-wrangler/install-update) to test these workers locally, or to deploy custom versions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export default { | ||
async fetch(request, _env, _ctx) { | ||
const url = new URL(request.url); | ||
url.hostname = "docs-anw.pages.dev"; | ||
|
||
let res = await fetch(url, request); | ||
|
||
if (res.status === 404) { | ||
res = await fetch("https://zed.dev/404"); | ||
} | ||
|
||
return res; | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name = "docs-proxy" | ||
main = "src/worker.js" | ||
compatibility_date = "2024-05-03" | ||
workers_dev = true | ||
|
||
[[routes]] | ||
pattern = "zed.dev/docs*" | ||
zone_name = "zed.dev" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export default { | ||
async fetch(request, env) { | ||
const url = new URL(request.url); | ||
const key = url.pathname.slice(1); | ||
|
||
const object = await env.OPEN_SOURCE_WEBSITE_ASSETS_BUCKET.get(key); | ||
if (!object) { | ||
return await fetch("https://zed.dev/404"); | ||
} | ||
|
||
const headers = new Headers(); | ||
object.writeHttpMetadata(headers); | ||
headers.set("etag", object.httpEtag); | ||
|
||
return new Response(object.body, { | ||
headers, | ||
}); | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name = "open-source-website-assets" | ||
main = "src/worker.js" | ||
compatibility_date = "2024-05-15" | ||
workers_dev = true | ||
|
||
[[r2_buckets]] | ||
binding = 'OPEN_SOURCE_WEBSITE_ASSETS_BUCKET' | ||
bucket_name = 'zed-open-source-website-assets' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[test-groups] | ||
sequential-db-tests = { max-threads = 1 } | ||
|
||
[[profile.default.overrides]] | ||
filter = 'package(db)' | ||
test-group = 'sequential-db-tests' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
**/target | ||
zed.xcworkspace | ||
.DS_Store | ||
plugins/bin | ||
script/node_modules | ||
styles/node_modules | ||
crates/collab/static/styles.css | ||
vendor/bin | ||
assets/themes/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Prevent GitHub from displaying comments within JSON files as errors. | ||
*.json linguist-language=JSON-with-Comments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Feature Request | ||
description: "Tip: open this issue template from within Zed with the `request feature` command palette action" | ||
labels: ["admin read", "triage", "enhancement"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Check for existing issues | ||
description: Check the backlog of issues to reduce the chances of creating duplicates; if an issue already exists, place a `+1` (👍) on it. | ||
options: | ||
- label: Completed | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the feature | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: | | ||
If applicable, add mockups / screenshots to help present your vision of the feature | ||
description: Drag images into the text input below | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Bug Report | ||
description: | | ||
Use this template for **non-crash-related** bug reports. | ||
Tip: open this issue template from within Zed with the `file bug report` command palette action. | ||
labels: ["admin read", "triage", "defect"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Check for existing issues | ||
description: Check the backlog of issues to reduce the chances of creating duplicates; if an issue already exists, place a `+1` (👍) on it. | ||
options: | ||
- label: Completed | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug / provide steps to reproduce it | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: Run the `copy system specs into clipboard` command palette action and paste the output in the field below. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: If applicable, add mockups / screenshots to help explain present your vision of the feature | ||
description: Drag issues into the text input below | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue. | ||
description: | | ||
Drag Zed.log into the text input below. | ||
If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Crash Report | ||
description: | | ||
Use this template for crash reports. | ||
labels: ["admin read", "triage", "defect", "panic / crash"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Check for existing issues | ||
description: Check the backlog of issues to reduce the chances of creating duplicates; if an issue already exists, place a `+1` (👍) on it. | ||
options: | ||
- label: Completed | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug / provide steps to reproduce it | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: Run the `copy system specs into clipboard` command palette action and paste the output in the field below. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue. | ||
description: | | ||
Drag Zed.log into the text input below. | ||
If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Language Request | ||
url: https://github.com/zed-industries/extensions/issues/new?assignees=&labels=language&projects=&template=1_language_request.yml&title=%3Cname_of_language%3E | ||
about: Request a language in the extensions repository | ||
- name: Theme Request | ||
url: https://github.com/zed-industries/extensions/issues/new?assignees=&labels=theme&projects=&template=0_theme_request.yml&title=%3Cname_of_theme%3E+theme | ||
about: Request a theme in the extensions repository | ||
- name: Top-Ranking Issues | ||
url: https://github.com/zed-industries/zed/issues/5393 | ||
about: See an overview of the most popular Zed issues | ||
- name: Platform Support | ||
url: https://github.com/zed-industries/zed/issues/5391 | ||
about: A quick note on platform support | ||
- name: Positive Feedback | ||
url: https://github.com/zed-industries/zed/discussions/5397 | ||
about: A central location for kind words about Zed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: "Check formatting" | ||
description: "Checks code formatting use cargo fmt" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: cargo fmt | ||
shell: bash -euxo pipefail {0} | ||
run: cargo fmt --all -- --check | ||
|
||
- name: Find modified migrations | ||
shell: bash -euxo pipefail {0} | ||
run: | | ||
export SQUAWK_GITHUB_TOKEN=${{ github.token }} | ||
. ./script/squawk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "Run tests" | ||
description: "Runs the tests" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install Rust | ||
shell: bash -euxo pipefail {0} | ||
run: | | ||
cargo install cargo-nextest | ||
- name: Install Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Limit target directory size | ||
shell: bash -euxo pipefail {0} | ||
run: script/clear-target-dir-if-larger-than 100 | ||
|
||
- name: Run tests | ||
shell: bash -euxo pipefail {0} | ||
run: cargo nextest run --workspace --no-fail-fast |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
enabled: true | ||
preservePullRequestTitle: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
Release Notes: | ||
|
||
- Added/Fixed/Improved ... ([#<public_issue_number_if_exists>](https://github.com/zed-industries/zed/issues/<public_issue_number_if_exists>)). | ||
|
||
Optionally, include screenshots / media showcasing your addition that can be included in the release notes. | ||
|
||
### Or... | ||
|
||
Release Notes: | ||
|
||
- N/A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: bump_patch_version | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: "Branch name to run on" | ||
required: true | ||
|
||
concurrency: | ||
# Allow only one workflow per any non-`main` branch. | ||
group: ${{ github.workflow }}-${{ inputs.branch }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
bump_patch_version: | ||
runs-on: | ||
- self-hosted | ||
- test | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.inputs.branch }} | ||
ssh-key: ${{ secrets.ZED_BOT_DEPLOY_KEY }} | ||
|
||
- name: Bump Patch Version | ||
run: | | ||
set -eux | ||
channel=$(cat crates/zed/RELEASE_CHANNEL) | ||
tag_suffix="" | ||
case $channel in | ||
stable) | ||
;; | ||
preview) | ||
tag_suffix="-pre" | ||
;; | ||
*) | ||
echo "this must be run on either of stable|preview release branches" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
which cargo-set-version > /dev/null || cargo install cargo-edit --features vendored-openssl | ||
output=$(cargo set-version -p zed --bump patch 2>&1 | sed 's/.* //') | ||
git commit -am "Bump to $output for @$GITHUB_ACTOR" --author "Zed Bot <[email protected]>" | ||
git tag v${output}${tag_suffix} | ||
git push origin HEAD v${output}${tag_suffix} |
Oops, something went wrong.