File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Setting up a **cross-platform** environment for building and testing C++/C proje
22
22
| cache | cppcache |
23
23
| documentation | doxygen, graphviz |
24
24
| coverage | gcovr, opencppcoverage, kcov |
25
- | other | python, sevenzip |
25
+ | other | python, powershell, sevenzip |
26
26
27
27
` setup-cpp ` automatically installs the dependencies above tools if needed for the selected tool (e.g., ` python ` is required for ` conan ` ).
28
28
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { getVersion } from "../../versions/versions"
4
4
import { join , addExeExt } from "patha"
5
5
import execa from "execa"
6
6
import { chmodSync } from "fs"
7
+ import { ubuntuVersion } from "../../utils/env/ubuntu_version"
7
8
8
9
jest . setTimeout ( 3000000 )
9
10
describe ( "setup-gcc" , ( ) => {
@@ -13,7 +14,7 @@ describe("setup-gcc", () => {
13
14
} )
14
15
15
16
it ( "should setup gcc" , async ( ) => {
16
- const version = getVersion ( "gcc" , undefined )
17
+ const version = getVersion ( "gcc" , undefined , await ubuntuVersion ( ) )
17
18
const installInfo = await setupGcc ( version , directory , process . arch )
18
19
19
20
let gpp = "g++"
You can’t perform that action at this time.
0 commit comments