Compare commits

...

5 Commits

Author SHA1 Message Date
88911c5434 fix(ci): remove rustflags
All checks were successful
Test Agent / test (push) Successful in 1m3s
2025-08-15 13:52:02 +09:00
c76fefe56b fix: ci test
Some checks failed
Test Agent / test (push) Failing after 1m0s
2025-08-15 13:49:07 +09:00
32a9ba5b78 fix(ci): add itself to ci change condition
Some checks failed
Test Agent / test (push) Failing after 1m0s
2025-08-15 13:44:20 +09:00
6b7e512975 docs: languaged README 2025-08-15 13:43:28 +09:00
9073156831 fix: workflow subdir 2025-08-15 13:41:32 +09:00
4 changed files with 21 additions and 6 deletions

View File

@@ -1,16 +1,25 @@
name: Rust CI name: Test Agent
on: on:
push: push:
branches: branches:
- main - main
paths:
- "agent/**"
- ".github/**"
pull_request: pull_request:
branches: branches:
- main - main
paths:
- "agent/**"
- ".github/**"
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults:
run:
working-directory: agent
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -30,8 +39,7 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-cargo-build- ${{ runner.os }}-cargo-build-
- name: Build
run: cargo build --verbose
- name: Run tests - name: Run tests
run: cargo test --verbose run: cargo test
env:
RUSTFLAGS: ""

3
README.ko.md Normal file
View File

@@ -0,0 +1,3 @@
# 민주주의 리눅스
한 개의 리눅스 인스턴스, 그러나 공공재인

View File

@@ -1 +1,5 @@
# Democracy Linux # Democracy Linux
[한국어](/README.ko.md)
One Linux instance, but free to use for everyone.

View File

@@ -11,5 +11,5 @@ pub fn run_qemu(config: &QemuConfig) {
.map(|s| s.to_string()) .map(|s| s.to_string())
.collect(); .collect();
let handle = Command::new(&config.executable).args(&args).spawn(); let _handle = Command::new(&config.executable).args(&args).spawn();
} }