Add tools for exfat filesystem in docker image and bump the version

This commit is contained in:
Yingdi Shan 2024-02-06 14:19:00 +08:00 committed by Tate, Hongliang Tian
parent cfcef6965a
commit bc9bce9dea
8 changed files with 12 additions and 11 deletions

View File

@ -10,9 +10,9 @@ jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
container: asterinas/asterinas:0.3.0
container: asterinas/asterinas:0.3.1
steps:
- run: echo "Running in asterinas/asterinas:0.3.0"
- run: echo "Running in asterinas/asterinas:0.3.1"
- uses: actions/checkout@v3

View File

@ -10,9 +10,9 @@ jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
container: asterinas/asterinas:0.3.0
container: asterinas/asterinas:0.3.1
steps:
- run: echo "Running in asterinas/asterinas:0.3.0"
- run: echo "Running in asterinas/asterinas:0.3.1"
- uses: actions/checkout@v3

View File

@ -10,9 +10,9 @@ jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
container: asterinas/asterinas:0.3.0
container: asterinas/asterinas:0.3.1
steps:
- run: echo "Running in asterinas/asterinas:0.3.0"
- run: echo "Running in asterinas/asterinas:0.3.1"
- uses: actions/checkout@v3

2
Cargo.lock generated
View File

@ -346,7 +346,7 @@ dependencies = [
[[package]]
name = "asterinas"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"aster-frame",
"aster-framebuffer",

View File

@ -1,6 +1,6 @@
[package]
name = "asterinas"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
[[bin]]

View File

@ -49,7 +49,7 @@ git clone https://github.com/asterinas/asterinas
2. Run a Docker container as the development environment.
```bash
docker run -it --privileged --network=host --device=/dev/kvm -v ./asterinas:/root/asterinas asterinas/asterinas:0.3.0
docker run -it --privileged --network=host --device=/dev/kvm -v ./asterinas:/root/asterinas asterinas/asterinas:0.3.1
```
3. Inside the container, go to the project folder to build and run Asterinas.

View File

@ -1 +1 @@
0.3.0
0.3.1

View File

@ -224,7 +224,8 @@ RUN apt update && apt-get install -y --no-install-recommends \
unzip \
vim \
xorriso \
zip
zip \
exfatprogs
# Clean apt cache
RUN apt clean && rm -rf /var/lib/apt/lists/*