Skip to content

Commit 2cc53ca

Browse files
committed
Install g++ package on ubuntu in workflows
1 parent a91de34 commit 2cc53ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cmake-version: "3.20"
3030

3131
- name: Install cpp
32-
run: sudo apt-get update && sudo apt-get install -y gcc
32+
run: sudo apt-get update && sudo apt-get install -y gcc g++
3333

3434
- name: Restore dotnet tools
3535
run: dotnet tool restore

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Install cpp (Linux)
3939
if: runner.os == 'Linux'
40-
run: sudo apt-get update && sudo apt-get install -y gcc
40+
run: sudo apt-get update && sudo apt-get install -y gcc g++
4141

4242
- name: Install cpp (macOS)
4343
if: runner.os == 'macOS'

0 commit comments

Comments
 (0)