Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update changelog for 0.45#768

Update changelog for 0.45

Update changelog for 0.45 #768

Workflow file for this run

name:Build
on:[push, pull_request]
env:
CARGO_TERM_COLOR:always
jobs:
fmt:
name:formatting
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v4
# TODO: Enable this when more of the Linebender CI has been applied.
#- name: install stable toolchain
# uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{ env.RUST_STABLE_VER }}
# components: rustfmt
-name:cargo fmt
run:cargo fmt --all --check
-name:install ripgrep
run:|
sudo apt update
sudo apt install ripgrep
-name:check copyright headers
run:bash .github/copyright.sh
build:
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v3
# We have to use the Release mode, otherwise it would take forever.
-name:Test
run:cargo test --all --release
-name:Build C API
working-directory:crates/c-api
run:cargo build
-name:Build C API without default features
working-directory:crates/c-api
run:cargo build --no-default-features
-name:Build resvg without default support
working-directory:crates/resvg
run:cargo check --no-default-features
-name:Build usvg without default support
working-directory:crates/usvg
run:cargo check --no-default-features
msrv:
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v3
-name:Install toolchain
uses:dtolnay/rust-toolchain@stable
with:
toolchain:1.67.1
-name:Build
run:cargo build
# We have some Windows specific code that we should check on each commit.
windows:
runs-on:windows-latest
steps:
-name:Checkout
uses:actions/checkout@v3
# Toolchain is stable-x86_64-pc-windows-msvc by default. No need to change it.
-name:Build thumbnailer
working-directory:tools/explorer-thumbnailer
env:
RUSTFLAGS:-Ctarget-feature=+crt-static# make sure it's static
run:cargo build
-name:Install Qt
uses:jurplel/install-qt-action@v4
with:
version:'5.15.2'
# Unlike other binaries, viewsvg isn't built with crt-static
-name:Build C API
working-directory:crates/c-api
run:cargo build --release
-name:Prepare Developer Command Prompt for MSVC
uses:ilammy/msvc-dev-cmd@v1
-name:Build viewsvg
working-directory:tools/viewsvg
run:|
qmake
nmake
# If this fails, consider changing your text or adding something to .typos.toml.
typos:
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v4
-name:check typos
uses:crate-ci/typos@v1.28.4

[8]ページ先頭

©2009-2025 Movatter.jp