Compare commits
2 Commits
7c1b3a437f
...
v0.4.5-55-
| Author | SHA1 | Date | |
|---|---|---|---|
|
e9546ce0a7
|
|||
| b73ffce048 |
@@ -20,7 +20,7 @@ jobs:
|
|||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.90.0
|
toolchain: 1.94
|
||||||
components: cargo
|
components: cargo
|
||||||
|
|
||||||
- name: Extract Version from Cargo.toml
|
- name: Extract Version from Cargo.toml
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.90.0
|
toolchain: 1.94
|
||||||
- run: |
|
- run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/gitlab_deploy_key
|
echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/gitlab_deploy_key
|
||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.90.0
|
toolchain: 1.94
|
||||||
- run: |
|
- run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/gitlab_deploy_key
|
echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/gitlab_deploy_key
|
||||||
@@ -52,7 +52,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.90.0
|
toolchain: 1.94
|
||||||
- run: rustup component add rustfmt
|
- run: rustup component add rustfmt
|
||||||
- run: |
|
- run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
@@ -71,7 +71,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.90.0
|
toolchain: 1.94
|
||||||
- run: rustup component add clippy
|
- run: rustup component add clippy
|
||||||
- run: |
|
- run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
@@ -90,7 +90,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.90.0
|
toolchain: 1.94
|
||||||
- run: |
|
- run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/gitlab_deploy_key
|
echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/gitlab_deploy_key
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -104,7 +104,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "icarus_meta"
|
name = "icarus_meta"
|
||||||
version = "0.4.4"
|
version = "0.4.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"imghdr",
|
"imghdr",
|
||||||
"infer",
|
"infer",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "icarus_meta"
|
name = "icarus_meta"
|
||||||
version = "0.4.4"
|
version = "0.4.5"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
rust-version = "1.90"
|
rust-version = "1.90"
|
||||||
|
|
||||||
|
|||||||
@@ -43,16 +43,25 @@ mod tests {
|
|||||||
match test_util::util::file_exists(&dir, &filename) {
|
match test_util::util::file_exists(&dir, &filename) {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
let filepath = test_util::util::get_full_path(&dir, &filename).unwrap();
|
let filepath = test_util::util::get_full_path(&dir, &filename).unwrap();
|
||||||
match super::get_duration(&filepath) {
|
let new_filepath = test_util::util::generate_newfilepath(&dir).unwrap();
|
||||||
Ok(duration) => {
|
|
||||||
let song_duration: u64 = 41;
|
|
||||||
let fetched_song_duration = duration.as_secs();
|
|
||||||
|
|
||||||
assert_eq!(
|
match test_util::util::copy_file(&filepath, &new_filepath) {
|
||||||
song_duration, fetched_song_duration,
|
Ok(_) => match super::get_duration(&new_filepath) {
|
||||||
"Durations should match, but they don't {song_duration} {fetched_song_duration} ({duration:?})"
|
Ok(duration) => {
|
||||||
);
|
test_util::util::remove_file(&new_filepath).unwrap();
|
||||||
}
|
|
||||||
|
let song_duration: u64 = 41;
|
||||||
|
let fetched_song_duration = duration.as_secs();
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
song_duration, fetched_song_duration,
|
||||||
|
"Durations should match, but they don't {song_duration} {fetched_song_duration} ({duration:?})"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error: {err:?}");
|
||||||
|
}
|
||||||
|
},
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
assert!(false, "Error: {err:?}");
|
assert!(false, "Error: {err:?}");
|
||||||
}
|
}
|
||||||
@@ -75,8 +84,10 @@ mod tests {
|
|||||||
let new_filepath = test_util::util::generate_newfilepath(&dir).unwrap();
|
let new_filepath = test_util::util::generate_newfilepath(&dir).unwrap();
|
||||||
|
|
||||||
match test_util::util::copy_file(&filepath, &new_filepath) {
|
match test_util::util::copy_file(&filepath, &new_filepath) {
|
||||||
Ok(_) => match super::get_song_properties(&filepath) {
|
Ok(_) => match super::get_song_properties(&new_filepath) {
|
||||||
Ok(song_properties) => {
|
Ok(song_properties) => {
|
||||||
|
test_util::util::remove_file(&new_filepath).unwrap();
|
||||||
|
|
||||||
let song_duration: u64 = 41;
|
let song_duration: u64 = 41;
|
||||||
let bitrate: u32 = 1;
|
let bitrate: u32 = 1;
|
||||||
let overall_bitrate: u32 = 3;
|
let overall_bitrate: u32 = 3;
|
||||||
|
|||||||
Reference in New Issue
Block a user