mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 21:06:48 +00:00
Add tools for exfat filesystem in docker image and bump the version
This commit is contained in:
parent
cfcef6965a
commit
bc9bce9dea
4
.github/workflows/cargo_check.yml
vendored
4
.github/workflows/cargo_check.yml
vendored
@ -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
|
||||
|
||||
|
4
.github/workflows/integration_test.yml
vendored
4
.github/workflows/integration_test.yml
vendored
@ -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
|
||||
|
||||
|
4
.github/workflows/unit_test.yml
vendored
4
.github/workflows/unit_test.yml
vendored
@ -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
2
Cargo.lock
generated
@ -346,7 +346,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "asterinas"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
dependencies = [
|
||||
"aster-frame",
|
||||
"aster-framebuffer",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "asterinas"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
edition = "2021"
|
||||
|
||||
[[bin]]
|
||||
|
@ -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.
|
||||
|
@ -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/*
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user