Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new mode, replace unwraps, change sending progress data #1354

Merged
merged 3 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
linux-cli:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-20.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_cli_eyra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

# New versions of nightly rust may call new unimplemented in eyra functions, so use const version
- name: Setup rust version
run: rustup default nightly-2024-02-06
run: rustup default nightly-2024-09-25

- name: Add eyra
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux_gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
linux-krokiet-gui:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-20.04
steps:
Expand All @@ -39,7 +39,7 @@ jobs:
linux-krokiet-gui-heif:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-22.04
steps:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
linux-gui:
strategy:
matrix:
toolchain: [ stable, 1.75.0 ]
toolchain: [ stable, 1.79.0 ]
type: [ release ]
runs-on: ubuntu-22.04
steps:
Expand Down
49 changes: 25 additions & 24 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,28 @@ jobs:
path: target/release/krokiet
if: ${{ matrix.type == 'release' }}

- name: Build Release Heif
run: cargo build --release --features heif
if: ${{ matrix.type == 'release'}}

- name: Store MacOS CLI Heif
uses: actions/upload-artifact@v4
with:
name: czkawka_cli-${{ runner.os }}-${{ matrix.toolchain }}-heif
path: target/release/czkawka_cli
if: ${{ matrix.type == 'release' }}

- name: Store MacOS GUI Heif
uses: actions/upload-artifact@v4
with:
name: czkawka_gui-${{ runner.os }}-${{ matrix.toolchain }}-heif
path: target/release/czkawka_gui
if: ${{ matrix.type == 'release' }}

- name: Store MacOS Krokiet Heif
uses: actions/upload-artifact@v4
with:
name: krokiet-${{ runner.os }}-${{ matrix.toolchain }}-heif
path: target/release/krokiet
if: ${{ matrix.type == 'release' }}
# TODO - compilation is broken, not sure why
# - name: Build Release Heif
# run: cargo build --release --features heif
# if: ${{ matrix.type == 'release'}}
#
# - name: Store MacOS CLI Heif
# uses: actions/upload-artifact@v4
# with:
# name: czkawka_cli-${{ runner.os }}-${{ matrix.toolchain }}-heif
# path: target/release/czkawka_cli
# if: ${{ matrix.type == 'release' }}
#
# - name: Store MacOS GUI Heif
# uses: actions/upload-artifact@v4
# with:
# name: czkawka_gui-${{ runner.os }}-${{ matrix.toolchain }}-heif
# path: target/release/czkawka_gui
# if: ${{ matrix.type == 'release' }}
#
# - name: Store MacOS Krokiet Heif
# uses: actions/upload-artifact@v4
# with:
# name: krokiet-${{ runner.os }}-${{ matrix.toolchain }}-heif
# path: target/release/krokiet
# if: ${{ matrix.type == 'release' }}
Loading
Loading