Skip to content

Commit

Permalink
ci: 💫 update CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneylab committed Apr 20, 2024
1 parent 7a6c350 commit 9cd9d8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ['c-cpp', 'python']
language: ['c-cpp']
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
Expand All @@ -54,22 +54,9 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
- if: matrix.language == 'python'
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
# - name: Autobuild
# uses: github/codeql-action/autobuild@v3
name: Autobuild
uses: github/codeql-action/autobuild@df5a14dc28094dc936e103b37d749c6628682b60 # v3.25.0
- if: matrix.language == 'c-cpp'
name: install
run: sudo apt-get update && sudo apt-get install gcovr lcov
run: sudo apt-get update && sudo apt-get install lcov libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev freeglut3-dev libxinerama-dev libxi-dev
- if: matrix.language == 'c-cpp'
name: Configure
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions Dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ set(USE_F16C ON)
set(USE_FMADD ON)

# Requires C++ 17
#set(CMAKE_CXX_STANDARD 17)
#set(CMAKE_CXX_STANDARD_REQUIRED ON)
#set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

function(jolt_raylib_hello_world_setup_dependencies)
message(STATUS "Include Dear ImGui")
Expand Down

0 comments on commit 9cd9d8f

Please sign in to comment.