parent
1d5744ae80
commit
6ab6648b33
|
@ -29,7 +29,7 @@ jobs:
|
|||
echo "aster_version=$( cat VERSION )" >> "$GITHUB_OUTPUT"
|
||||
echo "rust_version=$( grep -m1 -o 'nightly-[0-9]\+-[0-9]\+-[0-9]\+' rust-toolchain.toml )" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build and push
|
||||
- name: Build and push development image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
|
@ -39,3 +39,14 @@ jobs:
|
|||
tags: asterinas/asterinas:${{ steps.fetch-versions.outputs.aster_version }}
|
||||
build-args: |
|
||||
"ASTER_RUST_VERSION=${{ steps.fetch-versions.outputs.rust_version }}"
|
||||
|
||||
- name: Build and push OSDK test image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
file: ./osdk/tools/Dockerfile.ubuntu22.04
|
||||
platforms: linux/amd64
|
||||
push: true
|
||||
tags: asterinas/osdk:${{ steps.fetch-versions.outputs.aster_version }}
|
||||
build-args: |
|
||||
"ASTER_RUST_VERSION=${{ steps.fetch-versions.outputs.rust_version }}"
|
||||
|
|
|
@ -37,9 +37,9 @@ jobs:
|
|||
osdk-doc-env-test:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
container: asterinas/osdk:0.4.0
|
||||
container: asterinas/osdk:0.4.2
|
||||
steps:
|
||||
- run: echo "Running in asterinas/osdk:0.4.0"
|
||||
- run: echo "Running in asterinas/osdk:0.4.2"
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
|
|
|
@ -51,7 +51,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.4.1
|
||||
docker run -it --privileged --network=host --device=/dev/kvm -v ./asterinas:/root/asterinas asterinas/asterinas:0.4.2
|
||||
```
|
||||
|
||||
3. Inside the container, go to the project folder to build and run Asterinas.
|
||||
|
|
|
@ -48,7 +48,7 @@ git clone https://github.com/asterinas/asterinas
|
|||
2. 运行一个作为开发环境的Docker容器。
|
||||
|
||||
```bash
|
||||
docker run -it --privileged --network=host --device=/dev/kvm -v ./asterinas:/root/asterinas asterinas/asterinas:0.4.1
|
||||
docker run -it --privileged --network=host --device=/dev/kvm -v ./asterinas:/root/asterinas asterinas/asterinas:0.4.2
|
||||
```
|
||||
|
||||
3. 在容器内,进入项目文件夹构建并运行星绽。
|
||||
|
|
|
@ -128,7 +128,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "cargo-osdk"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
dependencies = [
|
||||
"assert_cmd",
|
||||
"clap",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "cargo-osdk"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
edition = "2021"
|
||||
description = "Accelerate OS development with Asterinas OSDK"
|
||||
license = "MPL-2.0"
|
||||
|
|
|
@ -26,9 +26,7 @@ pub fn execute_debug_command(config: &DebugConfig) {
|
|||
gdb.status().unwrap();
|
||||
}
|
||||
|
||||
// FIXME: Failed because the test env have no gdb.
|
||||
// #[test]
|
||||
#[allow(dead_code)]
|
||||
#[test]
|
||||
fn have_gdb_installed() {
|
||||
let output = Command::new("gdb").arg("--version").output();
|
||||
assert!(output.is_ok(), "Failed to run gdb");
|
||||
|
|
|
@ -20,6 +20,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|||
RUN apt update \
|
||||
&& apt install -y \
|
||||
build-essential \
|
||||
gdb \
|
||||
curl \
|
||||
grub-efi-amd64 \
|
||||
grub2-common \
|
||||
|
|
Loading…
Reference in New Issue