mirror of
https://github.com/Minres/RISCV-VP.git
synced 2025-12-17 17:01:35 +00:00
23 lines
594 B
YAML
23 lines
594 B
YAML
---
|
|
# Commands to start on workspace startup
|
|
image: stanka/gitpod-riscv-tools:latest
|
|
# file: .gitpod.Dockerfile
|
|
tasks:
|
|
- env:
|
|
CONAN_USER_HOME: "/workspace/conan"
|
|
init: |
|
|
python3 -m venv /workspace/venv
|
|
python3 -m pip install --upgrade pip
|
|
source /workspace/venv/bin/activate
|
|
pip install conan
|
|
command: |
|
|
source /workspace/venv/bin/activate
|
|
cmake -B build --preset=Release -DBUILD_SHARED_LIBS=ON
|
|
cmake --build build
|
|
vscode:
|
|
extensions:
|
|
- ms-python.python
|
|
- webfreak.debug
|
|
- twxs.cmake
|
|
- ms-vscode.cmake-tools
|