File tree 3 files changed +18
-0
lines changed 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM gitpod/workspace-full
2
+
3
+ USER gitpod
4
+
5
+ # Update Rust to the latest version
6
+ RUN rm -rf ~/.rustup && \
7
+ export PATH=$HOME/.cargo/bin:$PATH && \
8
+ rustup update stable && \
9
+ rustup component add rls && \
10
+ # Set up wasm-pack and wasm32-unknown-unknown for rustpython_wasm
11
+ curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh && \
12
+ rustup target add wasm32-unknown-unknown
13
+
14
+ USER root
Original file line number Diff line number Diff line change
1
+ image :
2
+ file : .gitpod.Dockerfile
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ A Python-3 (CPython >= 3.5.0) Interpreter written in Rust :snake: :scream:
7
7
8
8
[ ![ Build Status] ( https://travis-ci.org/RustPython/RustPython.svg?branch=master )] ( https://travis-ci.org/RustPython/RustPython )
9
9
[ ![ Build Status] ( https://dev.azure.com/ryan0463/ryan/_apis/build/status/RustPython.RustPython?branchName=master )] ( https://dev.azure.com/ryan0463/ryan/_build/latest?definitionId=1&branchName=master )
10
+ [ ![ Build Status] ( https://github.com/RustPython/RustPython/workflows/CI/badge.svg )] ( https://github.com/RustPython/RustPython/actions?query=workflow%3ACI )
10
11
[ ![ codecov] ( https://codecov.io/gh/RustPython/RustPython/branch/master/graph/badge.svg )] ( https://codecov.io/gh/RustPython/RustPython )
11
12
[ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-green.svg )] ( https://opensource.org/licenses/MIT )
12
13
[ ![ Contributors] ( https://img.shields.io/github/contributors/RustPython/RustPython.svg )] ( https://github.com/RustPython/RustPython/graphs/contributors )
@@ -15,6 +16,7 @@ A Python-3 (CPython >= 3.5.0) Interpreter written in Rust :snake: :scream:
15
16
[ ![ Crates.io] ( https://img.shields.io/crates/v/rustpython )] ( https://crates.io/crates/rustpython )
16
17
[ ![ dependency status] ( https://deps.rs/crate/rustpython/0.1.1/status.svg )] ( https://deps.rs/crate/rustpython/0.1.1 )
17
18
[ ![ WAPM package] ( https://wapm.io/package/rustpython/badge.svg?style=flat )] ( https://wapm.io/package/rustpython )
19
+ [ ![ Open in Gitpod] ( https://img.shields.io/static/v1?label=Open%20in&message=Gitpod&color=1aa6e4&logo=gitpod )] ( https://gitpod.io#https://github.com/RustPython/RustPython )
18
20
19
21
## Usage
20
22
You can’t perform that action at this time.
0 commit comments