mirror of
https://github.com/lldap/lldap.git
synced 2026-04-05 14:48:10 +00:00
Add copilot-setup-steps.yml for GitHub Copilot agent environment setup
Co-authored-by: nitnelave <796633+nitnelave@users.noreply.github.com>
This commit is contained in:
26
.github/copilot-setup-steps.yml
vendored
Normal file
26
.github/copilot-setup-steps.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: Copilot Setup Steps for LLDAP Development
|
||||
|
||||
steps:
|
||||
- name: Update package list
|
||||
run: sudo apt-get update
|
||||
|
||||
- name: Install system dependencies
|
||||
run: sudo apt-get install -y curl gzip binaryen build-essential
|
||||
|
||||
- name: Install Rust toolchain
|
||||
run: |
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
source ~/.cargo/env
|
||||
echo 'source ~/.cargo/env' >> ~/.bashrc
|
||||
|
||||
- name: Install wasm-pack for frontend builds
|
||||
run: |
|
||||
source ~/.cargo/env
|
||||
cargo install wasm-pack
|
||||
|
||||
- name: Verify installations
|
||||
run: |
|
||||
source ~/.cargo/env
|
||||
rustc --version
|
||||
cargo --version
|
||||
wasm-pack --version
|
||||
Reference in New Issue
Block a user