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: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 10 timeout-minutes: 10
container: asterinas/asterinas:0.3.0 container: asterinas/asterinas:0.3.1
steps: steps:
- run: echo "Running in asterinas/asterinas:0.3.0" - run: echo "Running in asterinas/asterinas:0.3.1"
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

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

View File

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

2
Cargo.lock generated
View File

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

View File

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

View File

@ -49,7 +49,7 @@ git clone https://github.com/asterinas/asterinas
2. Run a Docker container as the development environment. 2. Run a Docker container as the development environment.
```bash ```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. 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 \ unzip \
vim \ vim \
xorriso \ xorriso \
zip zip \
exfatprogs
# Clean apt cache # Clean apt cache
RUN apt clean && rm -rf /var/lib/apt/lists/* RUN apt clean && rm -rf /var/lib/apt/lists/*