diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 92ebc20b..8c4633d8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,13 +39,6 @@ jobs: restore-keys: | bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby-version }}- - # Install Binutils, Multilib, etc - # - name: Install C dev & Plugin Tools - # run: | - # sudo apt-get update -qq - # sudo apt-get install --assume-yes --quiet gcc-multilib gdb dotnet-sdk-8.0 - # sudo dotnet tool install --global dotnet-reportgenerator-globaltool - # Checks out repository under $GITHUB_WORKSPACE - name: Checkout Latest Repo uses: actions/checkout@v4 @@ -67,6 +60,12 @@ jobs: bundle update bundle install + # Install gdb for backtrace feature testing + - name: Install gdb for Backtrace Feature Testing + run: | + sudo apt-get update -qq + sudo apt-get install --assume-yes --quiet gdb + # Install GCovr for Gcov plugin - name: Install GCovr for Gcov plugin run: |