File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ concurrency:
1717 group : ${{ github.workflow }}-${{ github.ref }}
1818 cancel-in-progress : true
1919
20+ # env:
21+ # ccache: ccache
22+
2023jobs :
2124 build-emscripten :
2225 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1313 - ' **/*.md'
1414 - ' examples/**'
1515
16- env :
17- ccache : ccache
18-
1916concurrency :
2017 group : ${{ github.workflow }}-${{ github.ref }}
2118 cancel-in-progress : true
2219
20+ env :
21+ ccache : ccache
22+
2323jobs :
2424 build-ios-tvos :
2525 runs-on : macos-13
Original file line number Diff line number Diff line change 1313 - ' **/*.md'
1414 - ' examples/**'
1515
16- env :
17- ccache : ccache
18-
1916concurrency :
2017 group : ${{ github.workflow }}-${{ github.ref }}
2118 cancel-in-progress : true
2219
20+ env :
21+ ccache : ccache
22+
2323jobs :
2424 build-linux64-platforms :
2525 runs-on : ubuntu-latest
6161 # run: scripts/ci/upload_of_lib.sh;
6262 # env:
6363 # GA_CI_SECRET: ${{ secrets.CI_SECRET }}
64-
Original file line number Diff line number Diff line change 1313 - ' **/*.md'
1414 - ' examples/**'
1515
16- env :
17- ccache : ccache
18-
1916concurrency :
2017 group : ${{ github.workflow }}-${{ github.ref }}
2118 cancel-in-progress : true
2219
20+ env :
21+ ccache : ccache
22+
2323jobs :
2424 build-macos :
2525 runs-on : macos-13
Original file line number Diff line number Diff line change 1313 - ' **/*.md'
1414 - ' examples/**'
1515
16- env :
17- ccache : ccache
18-
1916concurrency :
2017 group : ${{ github.workflow }}-${{ github.ref }}
2118 cancel-in-progress : true
2219
20+ env :
21+ ccache : ccache
22+
2323jobs :
2424 build-msys2 :
2525 runs-on : windows-latest
6464
6565 - name : Run tests
6666 run : ./scripts/ci/msys2/run_tests.sh
67-
68-
Original file line number Diff line number Diff line change 1313 - ' **/*.md'
1414 - ' examples/**'
1515
16- env :
17- ccache : ccache
18-
1916concurrency :
2017 group : ${{ github.workflow }}-${{ github.ref }}
2118 cancel-in-progress : true
2219
20+ env :
21+ ccache : ccache
22+
2323jobs :
2424 rpi-build :
2525 runs-on : ubuntu-latest
5252 run : ./scripts/ci/linuxrpi/install.sh;
5353 - name : Build
5454 run : ./scripts/ci/linuxrpi/build.sh;
55-
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ concurrency:
1717 group : ${{ github.workflow }}-${{ github.ref }}
1818 cancel-in-progress : true
1919
20+ # env:
21+ # ccache: ccache
22+
2023jobs :
2124 build-vs2022 :
2225 runs-on : windows-2022
5861 working-directory : ${{env.GITHUB_WORKSPACE}}
5962 run :
6063 msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=debug /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
61-
Original file line number Diff line number Diff line change 1+ #!/usr/bin/python3
2+ import glob
3+
4+ lista = glob .glob ('actions/*.yml' )
5+ print (lista )
6+ contagem = 0
7+ alllines = ''
8+ lines = []
9+ first = True
10+ for a in lista :
11+ print (a )
12+ f = open (a ,'r' )
13+ # alllines += (f.read() + '\n\n\n\n')
14+
15+
16+ if first :
17+ first = False
18+ lines += 'name: OF'
19+ lines += ''
20+ lines += f .readlines ()[1 :]
21+ else :
22+ lines += f .readlines ()[23 :]
23+ # lines.append(f.readlines()[2:])
24+ lines += '\n \n '
25+ lines += '# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \n \n '
26+ # lines.append('\n\n\n\n')
27+ f .close ()
28+
29+ all = open ('of.yml' ,'w' )
30+ # all.write(alllines)
31+ print (lines )
32+ all .writelines (lines )
33+ all .close ()
34+
35+ print (alllines )
You can’t perform that action at this time.
0 commit comments