Skip to content

Commit

Permalink
Get more info about the self hosted runner being used, get prerequisi…
Browse files Browse the repository at this point in the history
…tes in a separate step.
  • Loading branch information
Gandalf-the-Grey committed Nov 28, 2023
1 parent 23609f6 commit 159fab5
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,28 @@ jobs:
runs-on: self-hosted

steps:
- name: Get runner info
run: |
hostname -A
id
pwd
free -m
nproc
- name: Checkout the code
run: |
git checkout https://github.com/openhive-network/hive
cd hive
git submodule update --init --recursive
- name: Configure the build
- name: Get the prerequisites
run: |
sudo apt install -y doxygen libboost-all-dev libreadline-dev libssl-dev libtool ncurses-dev pkg-config python3 python3-dev python3-jinja2 python3-pip libsnappy-dev libbz2-dev liburing-dev
- name: Configure the build
run: |
cmake -DCMAKE_BUILD_TYPE=Release .
- name: Build
run: |
make -j4
time make -j4

0 comments on commit 159fab5

Please sign in to comment.