Merge pull request #2394 from amaanq/hmmcipt2
Add more architectures to CICD
This commit is contained in:
commit
e1ea3328f4
3 changed files with 50 additions and 24 deletions
|
|
@ -21,8 +21,14 @@ const matrix = {
|
|||
arch: {
|
||||
'arm64': { name: 'arm64' },
|
||||
'arm': { name: 'arm' },
|
||||
'armv7l': { name: 'armv7l' },
|
||||
'x64': { name: 'x64' },
|
||||
'x86': { name: 'x86' },
|
||||
'i586': { name: 'i586' },
|
||||
'mipsel': { name: 'mipsel' },
|
||||
'mips64el': { name: 'mips64el' },
|
||||
'ppc64el': { name: 'ppc64el' },
|
||||
'riscv64gc': { name: 'riscv64gc' },
|
||||
}
|
||||
},
|
||||
'win32': {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ use std::{
|
|||
collections::HashMap,
|
||||
os::raw::c_void,
|
||||
sync::{
|
||||
atomic::{AtomicBool, AtomicU64, Ordering::SeqCst},
|
||||
atomic::{AtomicBool, AtomicUsize, Ordering::SeqCst},
|
||||
Mutex,
|
||||
},
|
||||
};
|
||||
|
|
@ -25,8 +25,8 @@ unsafe impl Sync for Allocation {}
|
|||
#[derive(Default)]
|
||||
struct AllocationRecorder {
|
||||
enabled: AtomicBool,
|
||||
allocation_count: AtomicU64,
|
||||
outstanding_allocations: Mutex<HashMap<Allocation, u64>>,
|
||||
allocation_count: AtomicUsize,
|
||||
outstanding_allocations: Mutex<HashMap<Allocation, usize>>,
|
||||
}
|
||||
|
||||
thread_local! {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue