From: Dmitry Belyavskiy Date: Fri, 2 Oct 2020 15:02:58 +0000 (+0300) Subject: Setup CodeQL for gost-engine X-Git-Tag: v3.0.0~60 X-Git-Url: http://www.wagner.pp.ru/gitweb/?a=commitdiff_plain;h=7999cf61d0fe42d217af87e00c6dfe59255ce815;hp=6da0c1cd9f85cfd01983cf1bf779320474bef57d;p=openssl-gost%2Fengine.git Setup CodeQL for gost-engine --- diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 77893f6..8c6a405 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,5 +1,11 @@ name: "CodeQL" +env: + OPENSSL_BRANCH: openssl-3.0.0-alpha6 + #RPATH: "-Wl,-rpath=${PREFIX}/lib" + #PREFIX: ${HOME}/opt + #PATH: ${PREFIX}/bin:${PATH} + on: push: branches: [master, ] @@ -30,14 +36,14 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 + # languages: cpp # Override language selection by uncommenting this and choosing your languages # with: - # languages: go, javascript, csharp, python, cpp, java # 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,25 @@ 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 + 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