Skip to content

Commit

Permalink
ci init
Browse files Browse the repository at this point in the history
  • Loading branch information
flaribbit committed Oct 6, 2023
1 parent 24d6cc9 commit dc193b6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push:
branches: [ "master", "ci" ]
pull_request:
branches: [ "master", "ci" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: setup vcpkg
run: vcpkg install libheif:x64-windows-static
- name: Build
run: |
$env:RUSTFLAGS='-Ctarget-feature=+crt-static'
cargo build --release --all-features

0 comments on commit dc193b6

Please sign in to comment.