Compare commits
7 Commits
0.9.9
...
3b3fec80ed
Author | SHA1 | Date | |
---|---|---|---|
3b3fec80ed | |||
|
a011940348 | ||
|
d23f271bca | ||
|
a71974b8f4 | ||
|
38548b86db | ||
|
1b04275f10 | ||
b59cc47845 |
@@ -1,40 +0,0 @@
|
||||
name: build release package
|
||||
run-name: ${{ gitea.actor }} is building newest nightly release
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents:
|
||||
write
|
||||
steps:
|
||||
- run: echo "Build process started by ${{ gitea.event_name }} event."
|
||||
- run: echo "Running build process on ${{ runner.os }}"
|
||||
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
- name: Install cargo
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
override: true
|
||||
components: rustfmt, clippy
|
||||
- run: echo "Starting build"
|
||||
- run: cargo build -r
|
||||
- run: echo "Build finished"
|
||||
- name: Create new release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "target/release/qoi"
|
||||
body: "Automically generated release"
|
||||
|
||||
|
29
.github/workflows/release.yml
vendored
Normal file
29
.github/workflows/release.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# .github/workflows/release.yml
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: release ${{ matrix.target }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- target: x86_64-pc-windows-gnu
|
||||
archive: zip
|
||||
- target: x86_64-unknown-linux-musl
|
||||
archive: tar.gz tar.xz tar.zst
|
||||
- target: x86_64-apple-darwin
|
||||
archive: zip
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Compile and release
|
||||
uses: rust-build/rust-build.action@v1.4.5
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
RUSTTARGET: ${{ matrix.target }}
|
||||
ARCHIVE_TYPES: ${{ matrix.archive }}
|
22
.github/workflows/rust.yml
vendored
Normal file
22
.github/workflows/rust.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
21
src/lib.rs
21
src/lib.rs
@@ -64,8 +64,10 @@ pub mod qoi_lib {
|
||||
/// ```
|
||||
/// # use std::error::Error;
|
||||
/// # use crate::qoi::qoi_lib::*;
|
||||
/// # use log::*;
|
||||
/// # fn main() -> Result<(), Box<ImgError>> {
|
||||
/// init().expect("Failed to initialize logger");
|
||||
/// let level = LevelFilter::Debug;
|
||||
/// init(level).expect("Failed to initialize logger");
|
||||
/// #
|
||||
/// # Ok(())
|
||||
/// #
|
||||
@@ -77,8 +79,10 @@ pub mod qoi_lib {
|
||||
/// ```
|
||||
/// # use std::error::Error;
|
||||
/// # use crate::qoi::qoi_lib::*;
|
||||
/// # use log::*;
|
||||
/// # fn main() -> Result<(), ImgError> {
|
||||
/// match init() {
|
||||
/// let level = LevelFilter::Debug;
|
||||
/// match init(level) {
|
||||
/// Ok(()) => (),
|
||||
/// Err(e) => println!("Logger failed to initialize!")
|
||||
/// }
|
||||
@@ -615,12 +619,15 @@ pub mod qoi_lib {
|
||||
}
|
||||
/// Writes Image as byte vector to file with name given as string slice.
|
||||
/// ```rust
|
||||
/// use qoi::qoi_lib::*
|
||||
/// # use qoi::qoi_lib::*;
|
||||
/// # fn main() {
|
||||
///
|
||||
/// let img = Image::new();
|
||||
/// let bytes: Vec<u8> = img.to_bytes();
|
||||
/// let bytes: Vec<u8> = vec![];
|
||||
/// let name = "qoi-image";
|
||||
/// write_to_file(bytes, name);
|
||||
/// #
|
||||
/// #
|
||||
/// # }
|
||||
/// ```
|
||||
pub fn write_to_file(bytes: Vec<u8>, filename: &str) -> std::io::Result<()> {
|
||||
let mut file_path: String = String::from(filename);
|
||||
@@ -869,7 +876,7 @@ pub mod qoi_lib {
|
||||
assert_eq!(pix3.diff(&pix4), (-5, -5, -5));
|
||||
}
|
||||
|
||||
#[test]
|
||||
/* #[test]
|
||||
fn qoi_to_qoi_test() -> io::Result<()> {
|
||||
//Open path to test images
|
||||
let path: &Path = Path::new("./qoi_test_images/");
|
||||
@@ -997,7 +1004,7 @@ pub mod qoi_lib {
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
*/
|
||||
#[test]
|
||||
fn tag_test() {
|
||||
//init().expect("Logger initialisation failed!");
|
||||
|
Reference in New Issue
Block a user