]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
Setup CodeQL for gost-engine
authorDmitry Belyavskiy <beldmit@users.noreply.github.com>
Fri, 2 Oct 2020 15:02:58 +0000 (18:02 +0300)
committerDmitry Belyavskiy <beldmit@gmail.com>
Sat, 3 Oct 2020 17:28:08 +0000 (20:28 +0300)
.github/workflows/codeql-analysis.yml

index 77893f6a488aeb4c2f6be6765d1c948df8f10447..8c6a405a66e123093751075de154fa423cb3e2b6 100644 (file)
@@ -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