File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 build :
1111
12- runs-on : ubuntu-latest
12+ runs-on : ubuntu-22.04
1313
1414 steps :
1515 - name : update
16- run : sudo apt install gcc-11 libstdc++-11-dev
16+ if : ${{ env.ACT }}
17+ run : sudo apt update && sudo apt install python3 && sudo apt install cmake
18+ - name : Install pip3
19+ if : ${{ env.ACT }}
20+ run : curl https://bootstrap.pypa.io/get-pip.py >get-pip.py && python3 get-pip.py
1721 - name : Install Conan
1822 id : conan
1923 uses : turtlebrowser/get-conan@main
2024 - name : Conan version
2125 run : echo "${{ steps.conan.outputs.version }}"
2226 - uses : actions/checkout@v2
23- - name : gcc version
24- run : g++11 -v
2527 - name : make test
26- run : make test CC=g++11
28+ run : make test
29+
30+ # Note: the steps with `if: ${{ env.ACT }}` are for local setup only.
You can’t perform that action at this time.
0 commit comments