Skip to content

Commit

Permalink
non-release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernQ committed Feb 12, 2025
1 parent 078871e commit ec68986
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
runs-on: ubuntu-latest
env:
CARGO_TARGET_DIR: ${{ github.workspace }}/target
CI: 1
SSID: SSID
PASSWORD: PASSWORD
STATIC_IP: 1.1.1.1
Expand Down
6 changes: 3 additions & 3 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,7 @@ fn run_ci_checks(workspace: &Path, args: CiArgs) -> Result<()> {
toolchain: if args.chip.is_xtensa() {
Some(String::from("esp"))
} else {
None
Some(String::from("stable"))
},
no_default_features: true,
},
Expand All @@ -1297,7 +1297,7 @@ fn run_ci_checks(workspace: &Path, args: CiArgs) -> Result<()> {
package: Package::Examples,
chip: args.chip,
example: None,
debug: false,
debug: true,
},
CargoAction::Build(PathBuf::from(format!("./examples/target/"))),
)
Expand All @@ -1311,7 +1311,7 @@ fn run_ci_checks(workspace: &Path, args: CiArgs) -> Result<()> {
package: Package::QaTest,
chip: args.chip,
example: None,
debug: false,
debug: true,
},
CargoAction::Build(PathBuf::from(format!("./qa-test/target/"))),
)
Expand Down

0 comments on commit ec68986

Please sign in to comment.