mirror of
https://github.com/openssl/openssl.git
synced 2024-12-21 06:09:35 +08:00
62ecad5378
Bumps [suisei-cn/actions-download-file](https://github.com/suisei-cn/actions-download-file) from 1.4.0 to 1.6.0. - [Release notes](https://github.com/suisei-cn/actions-download-file/releases) - [Commits](https://github.com/suisei-cn/actions-download-file/compare/v1.4.0...v1.6.0) --- updated-dependencies: - dependency-name: suisei-cn/actions-download-file dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> CLA: trivial Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23425)
103 lines
3.4 KiB
YAML
103 lines
3.4 KiB
YAML
# Copyright 2022-2023 The OpenSSL Project Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
# in the file LICENSE in the source distribution or at
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
name: Windows Compression GitHub CI
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'crypto/comp/*.c'
|
|
push:
|
|
paths:
|
|
- '**.c'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
zstd:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: checkout fuzz/corpora submodule
|
|
run: git submodule update --init --depth 1 fuzz/corpora
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
- uses: ilammy/setup-nasm@v1
|
|
- name: prepare the build directory
|
|
run: mkdir _build
|
|
- name: Get zstd
|
|
working-directory: _build
|
|
run: |
|
|
vcpkg install zstd:x64-windows
|
|
- name: config
|
|
working-directory: _build
|
|
run: |
|
|
perl ..\Configure enable-comp enable-zstd --with-zstd-include=C:\vcpkg\packages\zstd_x64-windows\include --with-zstd-lib=C:\vcpkg\packages\zstd_x64-windows\lib\zstd.lib no-makedepend VC-WIN64A
|
|
perl configdata.pm --dump
|
|
- name: build
|
|
working-directory: _build
|
|
run: nmake
|
|
- name: download coreinfo
|
|
uses: suisei-cn/actions-download-file@v1.6.0
|
|
with:
|
|
url: "https://download.sysinternals.com/files/Coreinfo.zip"
|
|
target: _build/coreinfo/
|
|
- name: get cpu info
|
|
working-directory: _build
|
|
continue-on-error: true
|
|
run: |
|
|
7z.exe x coreinfo/Coreinfo.zip
|
|
./Coreinfo64.exe -accepteula -f
|
|
./apps/openssl.exe version -c
|
|
- name: Check platform symbol usage
|
|
run: |
|
|
perl ./util/checkplatformsyms.pl ./util/platform_symbols/windows-symbols.txt libcrypto-3-x64.dll ./libssl-3-x64.dll
|
|
- name: test
|
|
working-directory: _build
|
|
run: |
|
|
$env:Path+=";C:\vcpkg\packages\zstd_x64-windows\bin"
|
|
nmake test VERBOSE_FAILURE=yes TESTS="-test_fuzz* -test_fipsload" HARNESS_JOBS=4
|
|
brotli:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: checkout fuzz/corpora submodule
|
|
run: git submodule update --init --depth 1 fuzz/corpora
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
- uses: ilammy/setup-nasm@v1
|
|
- name: prepare the build directory
|
|
run: mkdir _build
|
|
- name: Get brotli
|
|
working-directory: _build
|
|
run: |
|
|
vcpkg install brotli:x64-windows
|
|
- name: config
|
|
working-directory: _build
|
|
run: |
|
|
perl ..\Configure enable-comp enable-brotli --with-brotli-include=C:\vcpkg\packages\brotli_x64-windows\include --with-brotli-lib=C:\vcpkg\packages\brotli_x64-windows\lib no-makedepend VC-WIN64A
|
|
perl configdata.pm --dump
|
|
- name: build
|
|
working-directory: _build
|
|
run: nmake
|
|
- name: download coreinfo
|
|
uses: suisei-cn/actions-download-file@v1.6.0
|
|
with:
|
|
url: "https://download.sysinternals.com/files/Coreinfo.zip"
|
|
target: _build/coreinfo/
|
|
- name: get cpu info
|
|
working-directory: _build
|
|
continue-on-error: true
|
|
run: |
|
|
7z.exe x coreinfo/Coreinfo.zip
|
|
./Coreinfo64.exe -accepteula -f
|
|
./apps/openssl.exe version -c
|
|
- name: test
|
|
working-directory: _build
|
|
run: |
|
|
$env:Path+=";C:\vcpkg\packages\brotli_x64-windows\bin"
|
|
nmake test VERBOSE_FAILURE=yes TESTS="-test_fuzz* -test_fipsload" HARNESS_JOBS=4
|