Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 51ac972
  • /
  • workflows
  • /
  • fips-old.yml
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:88c6fe281f218ce04a59b0eb850a47a5aa9d44cc
directory badge Iframe embedding
swh:1:dir:5c9473030672e779f4e8d89a7e61f48316d185d8
fips-old.yml
# 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: Provider old versions compat
on: [pull_request, push]

permissions:
  contents: read

jobs:
  fips-provider-validation:
    strategy:
      matrix:
        module: [
          {
            dir: openssl-3.0.0,
            tgz: openssl-3.0.0.tar.gz,
            url: "https://www.openssl.org/source/old/3.0/openssl-3.0.0.tar.gz"
          },
        ]
    runs-on: ubuntu-latest
    steps:
      - name: create directory
        run: mkdir ./current
      - uses: actions/checkout@v4
        with:
          path: current
      - name: download module source
        run: wget --no-verbose ${{ matrix.module.url }}
      - name: unpack module source
        run: tar xzf ${{ matrix.module.tgz }}
      - name: localegen
        run: sudo locale-gen tr_TR.UTF-8
      - name: config current
        run: ./config --banner=Configured enable-shared enable-fips
        working-directory: ./current
      - name: config dump current
        run: ./configdata.pm --dump
        working-directory: ./current
      - name: make current
        run: make -s -j4
        working-directory: ./current
      - name: show module from current
        run: |
          ./util/wrap.pl -fips apps/openssl list -provider-path providers \
                                                 -provider fips -providers
        working-directory: ./current
      - name: test current
        run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
        working-directory: ./current
      - name: config module
        run: ./config --banner=Configured enable-shared enable-fips
        working-directory: ${{ matrix.module.dir }}
      - name: config dump module
        run: ./configdata.pm --dump
        working-directory: ${{ matrix.module.dir }}
      - name: make module
        run: make -s -j4
        working-directory: ${{ matrix.module.dir }}
      - name: setup module cross validation
        run: cp providers/fips{module.cnf,.so} ../current/providers/
        working-directory: ${{ matrix.module.dir }}
      - name: show module used for cross validation
        run: |
          ./util/wrap.pl -fips apps/openssl list -provider-path providers \
                                                 -provider fips -providers
        working-directory: ./current
      - name: test module cross validation
        run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
        working-directory: ./current

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top