6 Commits
v0.1.0 ... main

Author SHA1 Message Date
4a2f7d15ce .github/workflows/build.yml aktualisiert
Some checks failed
Rust Cross-Platform Build / Set Tag Name (push) Failing after 2s
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 4s
Rust Cross-Platform Build / Setup Rust Toolchain (push) Successful in 24s
Rust Cross-Platform Build / Run Tests (push) Successful in 58s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Successful in 2m37s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Successful in 3m20s
Rust Cross-Platform Build / Create Tag (push) Has been skipped
Rust Cross-Platform Build / Build and Push Docker Image (push) Failing after 15s
Rust Cross-Platform Build / Workflow Summary (push) Successful in 2s
2025-09-25 17:25:30 +02:00
409657a879 .github/workflows/build.yml aktualisiert
Some checks failed
Rust Cross-Platform Build / Set Tag Name (push) Failing after 2s
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 4s
Rust Cross-Platform Build / Setup Rust Toolchain (push) Successful in 24s
Rust Cross-Platform Build / Run Tests (push) Successful in 1m2s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Successful in 2m44s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Successful in 3m24s
Rust Cross-Platform Build / Create Tag (push) Has been skipped
Rust Cross-Platform Build / Build and Push Docker Image (push) Failing after 15s
Rust Cross-Platform Build / Workflow Summary (push) Successful in 2s
2025-09-25 17:17:41 +02:00
2a1471a380 check builders
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 4s
Rust Cross-Platform Build / Set Tag Name (push) Failing after 1s
Rust Cross-Platform Build / Setup Rust Toolchain (push) Successful in 25s
Rust Cross-Platform Build / Run Tests (push) Successful in 1m18s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Successful in 1m41s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Successful in 4m49s
Rust Cross-Platform Build / Create Tag (push) Has been skipped
Rust Cross-Platform Build / Build and Push Docker Image (push) Failing after 13s
Rust Cross-Platform Build / Workflow Summary (push) Successful in 1s
2025-09-23 21:10:05 +02:00
c16547628a test
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Has been cancelled
Rust Cross-Platform Build / Setup Rust Toolchain (push) Has been cancelled
Rust Cross-Platform Build / Run Tests (push) Has been cancelled
Rust Cross-Platform Build / Set Tag Name (push) Has been cancelled
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Has been cancelled
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Has been cancelled
Rust Cross-Platform Build / Build and Push Docker Image (push) Has been cancelled
Rust Cross-Platform Build / Create Tag (push) Has been cancelled
Rust Cross-Platform Build / Workflow Summary (push) Has been cancelled
2025-09-23 16:24:44 +02:00
Patrick Mahnke-Hartmann
6dc9972f2f Merge branch 'development' 2025-09-19 15:07:25 +02:00
Patrick Mahnke-Hartmann
6a2d462ec7 check tagging 2025-09-19 14:23:59 +02:00
3 changed files with 8 additions and 4 deletions

View File

@@ -231,8 +231,8 @@ jobs:
uses: docker/login-action@v2 uses: docker/login-action@v2
with: with:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.AUTOMATION_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.AUTOMATION_PASSWORD }}
- name: Build Docker image - name: Build Docker image
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
@@ -294,4 +294,6 @@ jobs:
echo "✅ All checks passed!" >> $GITHUB_STEP_SUMMARY echo "✅ All checks passed!" >> $GITHUB_STEP_SUMMARY
else else
echo "❌ Some checks failed. Please review the logs." >> $GITHUB_STEP_SUMMARY echo "❌ Some checks failed. Please review the logs." >> $GITHUB_STEP_SUMMARY
fi fi
#test

View File

@@ -153,3 +153,5 @@ pub async fn send_metrics(
Ok(()) Ok(())
} }
//test

View File

@@ -1,6 +1,6 @@
/// WatcherAgent - A Rust-based system monitoring agent /// WatcherAgent - A Rust-based system monitoring agent
/// This agent collects hardware metrics and sends them to a backend server. /// This agent collects hardware metrics and sends them to a backend server.
/// It supports CPU, GPU, RAM, disk, and network metrics. /// It supports CPU, GPU, RAM, disk and network metrics.
pub mod api; pub mod api;
pub mod hardware; pub mod hardware;
pub mod metrics; pub mod metrics;