summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2020-06-06 12:17:57 -0700
committerSteven Fackler <sfackler@gmail.com>2020-06-06 13:58:44 -0700
commit6f7501b0342b32bd459c912d6fee0e5a614a3172 (patch)
tree2de4c7091bbf96f62c61ce0e91cdc045bfec5ecf /.github/workflows/ci.yml
parentf042c21f93733ffa0e697b3bcad2dedd0c6ff95f (diff)
downloadrust-openssl-6f7501b0342b32bd459c912d6fee0e5a614a3172.zip
Move vcpkg build to github actions
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 49c1acfd..eb5fb740 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,6 +7,7 @@ on:
push:
branches:
- master
+ - actions-vcpkg
env:
RUSTFLAGS: -Dwarnings
@@ -90,3 +91,16 @@ jobs:
key: min-version-target-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}
- name: Check openssl
run: cargo check -p openssl
+
+ windows-vcpkg:
+ name: windows-vcpkg
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install Rust
+ run: rustup update stable && rustup default stable
+ - name: Get rust version
+ id: rust-version
+ run: echo "::set-output name=version::$(rustc --version)"
+ - name: Install OpenSSL
+ run: vcpkg install openssl