Skip to content

cargo: bump aws-sdk-qldbsession from 0.19.0 to 0.24.0 #1194

cargo: bump aws-sdk-qldbsession from 0.19.0 to 0.24.0

cargo: bump aws-sdk-qldbsession from 0.19.0 to 0.24.0 #1194

Workflow file for this run

name: CI Build
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build and Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
# On 2022-01-11, GitHub Actions changed the `windows-latest` virtual environment alias so
# that it stopped pointing to `windows-2019` and began pointing to `windows-2022` instead.
# The pipeline needs to be updated to support the new edition of Windows Server. In the
# meantime, the build only tests Windows Server 2019.
os: [ubuntu-latest, macos-latest, windows-2019]
steps:
- name: Remove MSys64 MingW64 Binaries
if: runner.os == 'Windows'
# remove this because there is a bad libclang.dll that confuses bindgen
run: Remove-Item -LiteralPath "C:\msys64\mingw64\bin" -Force -Recurse
- name: Install Dependencies
if: runner.os == 'Windows'
run: choco install llvm -y
- name: Git Checkout
uses: actions/checkout@v2
- name: Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cargo Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- name: Cargo Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose