X-Git-Url: http://wagner.pp.ru/gitweb/?a=blobdiff_plain;f=.github%2Fworkflows%2Fcodeql-analysis.yml;h=f2b3a9917af2652ef43c7483eac300655366246d;hb=b1316e066838eb4c4fafa64fd98590e60c62a189;hp=77893f6a488aeb4c2f6be6765d1c948df8f10447;hpb=9242b82902544123f2050c3236f87e94600d4cc0;p=openssl-gost%2Fengine.git diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 77893f6..f2b3a99 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,5 +1,11 @@ name: "CodeQL" +env: + OPENSSL_BRANCH: OpenSSL_1_1_1m + #RPATH: "-Wl,-rpath=${PREFIX}/lib" + #PREFIX: ${HOME}/opt + #PATH: ${PREFIX}/bin:${PATH} + on: push: branches: [master, ] @@ -36,8 +42,8 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v1 + # - name: Autobuild + # uses: github/codeql-action/autobuild@v1 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -46,9 +52,28 @@ jobs: # and modify them (or add more) to build your code if your project # uses a compiled language - #- run: | - # make bootstrap - # make release + - run: | + curl -L https://cpanmin.us | sudo perl - --sudo App::cpanminus + sudo cpanm --notest Test2::V0 > build.log 2>&1 || (cat build.log && exit 1) + if [ "$APT_INSTALL" ]; then sudo apt-get install -y $APT_INSTALL; fi + git clone --depth 1 -b ${OPENSSL_BRANCH} https://github.com/openssl/openssl.git + export PREFIX=`pwd`/opt + export RPATH="-Wl,-rpath=${PREFIX}/lib" + cd openssl + patch -p0 < ../patches/openssl_111m.diff + patch -p0 < ../patches/openssl_111m_obj.diff + patch -p0 < ../patches/openssl_111m_tls13.diff + git describe --always --long + ./config shared -d --prefix=${PREFIX} --openssldir=${PREFIX} ${RPATH} + make -s build_libs + make -s build_programs + make -s install_sw + cd .. + set -e + mkdir build + cd build + cmake -DOPENSSL_ROOT_DIR=${PREFIX} -DOPENSSL_LIBRARIES=${PREFIX}/lib -DOPENSSL_ENGINES_DIR=${PREFIX}/engines ${ASAN} .. + make - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1