kanidm/.github/workflows/windows_build.yml
dependabot[bot] 4b4e690642
Bump mozilla-actions/sccache-action from 0.0.7 to 0.0.8 in the all group ()
* Bump mozilla-actions/sccache-action from 0.0.7 to 0.0.8 in the all group
* fix: remove manual specification of sccache version from github actions

Bumps the all group with 1 update: [mozilla-actions/sccache-action](https://github.com/mozilla-actions/sccache-action).


Updates `mozilla-actions/sccache-action` from 0.0.7 to 0.0.8
- [Release notes](https://github.com/mozilla-actions/sccache-action/releases)
- [Commits](https://github.com/mozilla-actions/sccache-action/compare/v0.0.7...v0.0.8)

---
updated-dependencies:
- dependency-name: mozilla-actions/sccache-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-14 00:32:14 +00:00

35 lines
926 B
YAML

---
name: Windows Build and Test
# Trigger the workflow on push to master or pull request
"on":
push:
branches:
- master
pull_request:
workflow_dispatch: # so you can run it manually
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
windows_build_kanidm:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install OpenSSL
run: |
vcpkg integrate install
vcpkg install openssl:x64-windows-static-md
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.8
- run: cargo build --locked -p kanidm_client -p kanidm_tools --bin kanidm
# yamllint disable-line rule:line-length
- run: cargo test -p kanidm_client -p kanidm_tools