File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 12
12
# well on Windows or Mac. You can convert this to a matrix build if you need
13
13
# cross-platform coverage.
14
14
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix
15
- runs-on : ubuntu-latest
15
+ runs-on : ubuntu-20.04
16
16
17
17
strategy :
18
18
matrix :
21
21
steps :
22
22
- uses : actions/checkout@v2
23
23
24
+ - name : Install ppa
25
+ run : sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
26
+
27
+ - name : Install dependencies
28
+ run : sudo apt-get install g++-10
29
+
24
30
- name : Create Build Environment
25
31
# Some projects don't allow in-source building, so create a separate build directory
26
32
# We'll use this as our working directory for all subsequent commands
You can’t perform that action at this time.
0 commit comments