Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Jan 17, 2020
1 parent 329b10a commit eec3936
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tier1.yml
@@ -1,4 +1,4 @@
on: push
on: [push, pull_request]

name: Tier 1 CI

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tier2.yml
@@ -1,7 +1,7 @@
# Tier 2 platforms are expected to be compiled.
# There are no guarantees provided for code correctness on these platforms.

on: push
on: [push, pull_request]

name: Tier 2 CI

Expand Down
1 change: 1 addition & 0 deletions heim-derive/src/lib.rs
Expand Up @@ -24,6 +24,7 @@
unused_results
)]

#[allow(unused_extern_crates)]
extern crate proc_macro;

use proc_macro::TokenStream;
Expand Down
9 changes: 8 additions & 1 deletion heim-virt/src/sys/linux/device_tree.rs
@@ -1,7 +1,14 @@
use std::marker::Unpin;
use std::path::Path;

use heim_common::prelude::{future, Future, FutureExt, StreamExt, TryFutureExt, TryStreamExt};
#[cfg(any(
target_arch = "arm",
target_arch = "aarch64",
target_arch = "powerpc",
target_arch = "powerpc64"
))]
use heim_common::prelude::TryFutureExt;
use heim_common::prelude::{future, Future, FutureExt, StreamExt, TryStreamExt};
use heim_runtime::fs;

use crate::Virtualization;
Expand Down

0 comments on commit eec3936

Please sign in to comment.