Skip to content

Add OpenFlags for SFTP file open options #89

Add OpenFlags for SFTP file open options

Add OpenFlags for SFTP file open options #89

Workflow file for this run

name: Windows
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-2019]
env:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- name: "checkout repo"
uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: ${{ matrix.env.TARGET }}
- name: Build and test
env:
TARGET: ${{ matrix.env.TARGET }}
run: |
rustc -V
cargo -V
cargo run --target %TARGET% --example link --features vendored,vendored-openssl
shell: cmd