Skip to content

Commit

Permalink
👷 Restore gdb install for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarlesky committed May 12, 2024
1 parent f2d37a0 commit e80af0b
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit e80af0b

Please sign in to comment.