Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
name: CI
on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: '0 2 * * 0'

env:
OPENSSL_BRANCH: openssl-3.6
OPENSSL_BRANCH: openssl-3.6.0
USE_RPATH: yes
PATCH_OPENSSL: 0
GOST_PROVIDER_ENABLE_ONLINE_TESTS: 1

jobs:
gcc-openssl-stable:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
env:
PATCH_OPENSSL: 1
steps:
Expand All @@ -21,6 +26,7 @@ jobs:

clang-openssl-stable:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
env:
CC: clang
PATCH_OPENSSL: 1
Expand All @@ -33,6 +39,7 @@ jobs:

macos-openssl-stable:
runs-on: macos-latest
if: ${{ github.event_name != 'schedule' }}
env:
USE_RPATH:
PATCH_OPENSSL: 1
Expand All @@ -46,6 +53,7 @@ jobs:

gcc-openssl-master:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'schedule' }}
env:
OPENSSL_BRANCH: master
steps:
Expand All @@ -57,6 +65,7 @@ jobs:

macos-openssl-master:
runs-on: macos-latest
if: ${{ github.event_name == 'schedule' }}
env:
OPENSSL_BRANCH: master
USE_RPATH:
Expand All @@ -69,6 +78,7 @@ jobs:

gcc-asan-openssl-master:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'schedule' }}
env:
OPENSSL_BRANCH: master
ASAN: -DASAN=1
Expand All @@ -81,6 +91,7 @@ jobs:

macos-asan-openssl-master:
runs-on: macos-latest
if: ${{ github.event_name == 'schedule' }}
env:
OPENSSL_BRANCH: master
ASAN: -DASAN=1
Expand All @@ -94,6 +105,7 @@ jobs:

gcc-openssl-stable-x86:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'schedule' }}
env:
CFLAGS: -m32
LDFLAGS: -m32
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "CodeQL"

env:
OPENSSL_BRANCH: openssl-3.6
OPENSSL_BRANCH: openssl-3.6.0
#RPATH: "-Wl,-rpath=${PREFIX}/lib"
#PREFIX: ${HOME}/opt
#PATH: ${PREFIX}/bin:${PATH}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'gost-engine' || github.event_name == 'workflow_dispatch' }}
env:
OPENSSL_BRANCH: openssl-3.6
OPENSSL_BRANCH: openssl-3.6.0
USE_RPATH: yes
PATCH_OPENSSL: 1
GOST_PROVIDER_ENABLE_ONLINE_TESTS: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
repository: openssl/openssl
path: openssl
ref: openssl-3.6
ref: openssl-3.6.0
fetch-depth: 0
- run: echo "::set-output name=head::$(git -C openssl describe --always --long)"
id: openssl
Expand Down
Loading