File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -15,19 +15,23 @@ jobs:
1515 steps :
1616 - uses : actions/checkout@v3
1717
18- - name : Cache externals
19- id : cache-externals
18+ - name : Cache Boost
19+ id : cache-boost
2020 uses : actions/cache@v3
2121 with :
2222 path : ${{runner.temp}}/boost_1_88_0
23- key : cache-externals
23+ key : cache-boost
2424
25- - name : Get externals
26- if : steps.cache-externals.outputs.cache-hit != 'true'
25+ - name : Get GCC
26+ run : sudo apt-get install g++-10
27+
28+ - name : Get pyOpenSSL
29+ run : pyOpenSSL
30+
31+ - name : Get Boost
32+ if : steps.cache-boost.outputs.cache-hit != 'true'
2733 working-directory : ${{runner.temp}}
2834 run : |
29- sudo apt-get install g++-10
30- pip3 install pyOpenSSL
3135 # Download Boost.
3236 wget https://archives.boost.io/release/1.88.0/source/boost_1_88_0.tar.gz
3337 # Extract.
You can’t perform that action at this time.
0 commit comments