@@ -24,69 +24,70 @@ jobs:
24
24
token : ${{ secrets.GITHUB_TOKEN }}
25
25
- name : Show changed files
26
26
run :
27
- echo '${{ join(fromJSON(steps.changed_files.outputs.all), ' ' ) }}'
28
- - name : Install pospell
29
- run : |
30
- sudo apt-get update
31
- sudo apt-get install -y hunspell hunspell-fr-comprehensive
32
- sudo python3 -m pip install pospell
33
- - name : Run pospell
34
- run : pospell -p dict -l fr_FR *.po */*.po
27
+ echo '${{ join(fromJSON(steps.changed_files.outputs.all), "\n" ) }}'
28
+ # - name: Install pospell
29
+ # run: |
30
+ # sudo apt-get update
31
+ # sudo apt-get install -y hunspell hunspell-fr-comprehensive
32
+ # sudo python3 -m pip install pospell
33
+ # - name: Run pospell
34
+ # run: pospell -p dict -l fr_FR *.po */*.po
35
35
36
- powrap :
37
- name : ' Longueur des lignes (powrap)'
38
- runs-on : ubuntu-latest
39
- steps :
40
- - uses : actions/checkout@v2
41
- - name : Install powrap
42
- run : |
43
- sudo apt-get update
44
- sudo apt-get install gettext
45
- sudo python3 -m pip install powrap
46
- - name : Run powrap
47
- run : powrap --check --quiet *.po */*.po
48
-
49
- padpo :
50
- name : ' Grammaire (padpo)'
51
- runs-on : ubuntu-latest
52
- steps :
53
- - uses : actions/checkout@v2
54
- - uses : actions/setup-python@v2
55
- with :
56
- python-version : ' 3.9'
57
- - name : Install padpo
58
- run : |
59
- python3.9 -m venv .venv
60
- .venv/bin/python -m pip install --upgrade pip setuptools wheel
61
- .venv/bin/python -m pip install padpo
62
- - name : Run padpo
63
- run : PATH=$PATH:$PWD/.venv/bin/ padpo -i *.po */*.po 2>&1 | grep -v -Ff padpo.ignore
64
-
65
- sphinx :
66
- name : ' Génération de la doc (sphinx)'
67
- runs-on : ubuntu-latest
68
- steps :
69
- - uses : actions/checkout@v2
70
- - uses : actions/cache@v2
71
- with :
72
- path : ' ~/cpython/'
73
- key : ' 1'
74
- - uses : actions/setup-python@v2
75
- with :
76
- python-version : ' 3.9'
77
- - name : Clone cpython
78
- run : |
79
- if [ ! -d ~/cpython ]; then
80
- git clone https://github.com/python/cpython ~/cpython/
81
- else
82
- git -C ~/cpython fetch
83
- fi
84
- - name : Prepare build hierarchy
85
- run : |
86
- mkdir -p ~/locales/fr/LC_MESSAGES/
87
- cp -uv --parents *.po */*.po ~/locales/fr/LC_MESSAGES/
88
- git -C ~/cpython checkout b30934e9afb0af3f8e2e5f0992445be775b3c630
89
- - name : Prepare venv
90
- run : make -C $HOME/cpython/Doc venv
91
- - name : sphinx-build
92
- run : make -C $HOME/cpython/Doc SPHINXOPTS="-qW -j4 -D locale_dirs=$HOME/locales -D language=fr -D gettext_compact=0" autobuild-dev-html
36
+ # powrap:
37
+ # name: 'Longueur des lignes (powrap)'
38
+ # runs-on: ubuntu-latest
39
+ # steps:
40
+ # - uses: actions/checkout@v2
41
+ # - name: Install powrap
42
+ # run: |
43
+ # sudo apt-get update
44
+ # sudo apt-get install gettext
45
+ # sudo python3 -m pip install powrap
46
+ # - name: Run powrap
47
+ # run: powrap --check --quiet *.po */*.po
48
+ #
49
+ # padpo:
50
+ # name: 'Grammaire (padpo)'
51
+ # runs-on: ubuntu-latest
52
+ # steps:
53
+ # - uses: actions/checkout@v2
54
+ # - uses: actions/setup-python@v2
55
+ # with:
56
+ # python-version: '3.9'
57
+ # - name: Install padpo
58
+ # run: |
59
+ # python3.9 -m venv .venv
60
+ # .venv/bin/python -m pip install --upgrade pip setuptools wheel
61
+ # .venv/bin/python -m pip install padpo
62
+ # - name: Run padpo
63
+ # run: PATH=$PATH:$PWD/.venv/bin/ padpo -i *.po */*.po 2>&1 | grep -v -Ff padpo.ignore
64
+ #
65
+ # sphinx:
66
+ # name: 'Génération de la doc (sphinx)'
67
+ # runs-on: ubuntu-latest
68
+ # steps:
69
+ # - uses: actions/checkout@v2
70
+ # - uses: actions/cache@v2
71
+ # with:
72
+ # path: '~/cpython/'
73
+ # key: '1'
74
+ # - uses: actions/setup-python@v2
75
+ # with:
76
+ # python-version: '3.9'
77
+ # - name: Clone cpython
78
+ # run: |
79
+ # if [ ! -d ~/cpython ]; then
80
+ # git clone https://github.com/python/cpython ~/cpython/
81
+ # else
82
+ # git -C ~/cpython fetch
83
+ # fi
84
+ # - name: Prepare build hierarchy
85
+ # run: |
86
+ # mkdir -p ~/locales/fr/LC_MESSAGES/
87
+ # cp -uv --parents *.po */*.po ~/locales/fr/LC_MESSAGES/
88
+ # git -C ~/cpython checkout b30934e9afb0af3f8e2e5f0992445be775b3c630
89
+ # - name: Prepare venv
90
+ # run: make -C $HOME/cpython/Doc venv
91
+ # - name: sphinx-build
92
+ # run: make -C $HOME/cpython/Doc SPHINXOPTS="-qW -j4 -D locale_dirs=$HOME/locales -D language=fr -D gettext_compact=0" autobuild-dev-html
93
+ #
0 commit comments