Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
cpp setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak committed Nov 27, 2023
1 parent 59fd1d5 commit 87a9809
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build&test@arcrunner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ jobs:
runs-on: ${{ matrix.runner }}

steps:
- name: Install
run: sudo apt update && sudo apt upgrade -y && sudo apt install -y git curl pkg-config libssl-dev
- name: Setup | Cpp
uses: rlalik/setup-cpp-compiler@master
with:
compiler: gcc-10
- name: Install
run: |
sudo apt update && sudo apt upgrade -y && sudo apt install -y git curl pkg-config libssl-dev gcc-10 g++-10 \
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10 --slave /usr/bin/gcov gcov /usr/bin/gcov-10 \
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 90 --slave /usr/bin/g++ g++ /usr/bin/g++-9 --slave /usr/bin/gcov gcov /usr/bin/gcov-9 \
- name: Setup | Rust
uses: ATiltedTree/setup-rust@v1
with:
Expand Down

0 comments on commit 87a9809

Please sign in to comment.