mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-10 06:03:38 +00:00
- move most Linux tests to ubuntu 22.04 - macOS: run on macos-14 (on Apple Silicon!) - macOS: use OpenSSL 3.0 from brew - macOS: run with Python 3.11 - pip install -e .: add -v - trigger CI run for changed .toml files - use up-to-date github actions - remove libb2 references - since borg 1.2, we use blake2 indirectly via python stdlib
27 lines
622 B
YAML
27 lines
622 B
YAML
name: Windows CI
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
msys2-ucrt64:
|
|
runs-on: windows-latest
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: UCRT64
|
|
update: true
|
|
- name: Install dependencies
|
|
run: ./scripts/msys2-install-deps
|
|
- name: Build
|
|
run: ./scripts/msys2-build
|
|
- name: Test
|
|
run: ./dist/borg.exe -V
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: borg-windows
|
|
path: dist/borg.exe
|