Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mnich committed May 11, 2024
1 parent f779fdd commit fe6b466
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"image":"mcr.microsoft.com/devcontainers/universal:2"}
36 changes: 36 additions & 0 deletions .github/workflows/build-zed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build Zed

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
repository: zed-industries/zed

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Add WASM target
run: rustup target add wasm32-wasi

- name: Install C++ build tools
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64

- name: Run cargo
run: cargo run --release --target x86_64-pc-windows-gnu

- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: my-artifact
path: path/to/your/artifact

0 comments on commit fe6b466

Please sign in to comment.