File: action.yml

package info (click to toggle)
scitokens-cpp 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,172 kB
  • sloc: cpp: 11,717; ansic: 596; sh: 161; python: 132; makefile: 22
file content (15 lines) | stat: -rw-r--r-- 525 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Install GTest
description: Install and setup GTest for linking and building test application
runs:
  using: composite
  steps:
    - run: sudo apt-get install libgtest-dev lcov
      shell: bash
    - run: (cd /usr/src/gtest && sudo `which cmake` .)
      shell: bash
    - run: sudo make -j $(nproc) -C /usr/src/gtest
      shell: bash
    - run: sudo ln -s /usr/src/gtest/libgtest.a /usr/lib/libgtest.a
      shell: bash
    - run: sudo ln -s /usr/src/gtest/libgtest_main.a /usr/lib/libgtest_main.a
      shell: bash