Skip to content

Commit

Permalink
Try to install OpenSSL for Windows job
Browse files Browse the repository at this point in the history
  • Loading branch information
locka99 committed Apr 13, 2022
1 parent 0541c10 commit 7623b01
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x]
build-windows:
runs-on: windows-latest
steps:
- run: vcpkg install openssl:x64-windows
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.10
- Starting from 0.10, OPC UA for Rust is a single crate with features to enable client, server and some other optional extras. What this means is
that `opcua_server::` becomes `opcua::server`, `opcua_client` becomes `opcua::client` and so on. Now you only reference `opcua` from your `Cargo.toml`.
- Replace Appveyor and Travis with Github Actions for CI/CD pipeline

## 0.9
- Multiple chunk support in client and server, sending and receiving.
Expand Down

0 comments on commit 7623b01

Please sign in to comment.