Skip to content

Commit

Permalink
ci: debug artifact output
Browse files Browse the repository at this point in the history
  • Loading branch information
cilki committed Jul 26, 2024
1 parent 43b1152 commit ac3a966
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,10 @@ jobs:
run: |
x doctor
x build --arch arm64 --platform android --format apk
tree
- uses: actions/upload-artifact@v4
with:
name: build_artifacts
path: target/${{ matrix.target }}/debug/*.apk

4 changes: 2 additions & 2 deletions sandpolis/src/agent/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,12 @@

use anyhow::{bail, Result};
use clap::Parser;
use std::io::{IsTerminal};
use std::io::IsTerminal;

use crate::core::database::Database;
use crate::CommandLine;

#[derive(Parser, Debug, Clone)]
#[derive(Parser, Debug, Clone, Default)]
pub struct AgentCommandLine {}

pub async fn main(args: CommandLine) -> Result<()> {
Expand Down
2 changes: 1 addition & 1 deletion sandpolis/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use clap::Parser;
use std::{net::SocketAddr, path::PathBuf};
use tracing::{info, trace};

#[derive(Parser, Debug, Clone)]
#[derive(Parser, Debug, Clone, Default)]
pub struct ServerCommandLine {
/// The server listen address:port
#[clap(long)]
Expand Down

0 comments on commit ac3a966

Please sign in to comment.