-
-
Notifications
You must be signed in to change notification settings - Fork 14
84 lines (84 loc) · 2.85 KB
/
update-and-build.yml
File metadata and controls
84 lines (84 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
on:
schedule:
- cron: '*/20 * * * *'
push:
branches:
- '*'
jobs:
update-translation:
runs-on: ubuntu-latest
strategy:
matrix:
version: [3.8, 3.9]
steps:
- uses: styfle/cancel-workflow-action@main
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@master
- run: sudo apt-get install -y gettext
- run: pip install transifex-client requests --use-feature=2020-resolver
- uses: actions/checkout@master
with:
ref: ${{ matrix.version }}
- run: ./manage_translation.py recreate_tx_config
env:
TX_TOKEN: ${{ secrets.TX_TOKEN }}
- run: echo -e '[https://www.transifex.com]\napi_hostname = https://api.transifex.com\nhostname = https://www.transifex.com\nusername = api' > $HOME/.transifexrc
- run: ./manage_translation.py fetch
env:
TX_TOKEN: ${{ secrets.TX_TOKEN }}
- run: ./manage_translation.py recreate_readme
env:
TX_TOKEN: ${{ secrets.TX_TOKEN }}
- run: git config --local user.email 'maciej.olko@gmail.com'
name: Run git config --local user.email '…'
- run: git config --local user.name "GitHub Action's update-translation job"
- run: git add .
- run: git commit -m 'Update translation from Transifex' || true
- uses: ad-m/github-push-action@master
with:
branch: ${{ matrix.version }}
github_token: ${{ secrets.GITHUB_TOKEN }}
build-translation:
runs-on: ubuntu-latest
strategy:
matrix:
version: [3.8, 3.9]
format: [html, latex]
needs: ['update-translation']
steps:
- uses: actions/setup-python@master
- uses: actions/checkout@master
with:
repository: python/cpython
ref: ${{ matrix.version }}
- run: make venv
working-directory: ./Doc
- uses: actions/checkout@master
with:
ref: ${{ matrix.version }}
path: Doc/locales/pl/LC_MESSAGES
- run: git pull
working-directory: ./Doc/locales/pl/LC_MESSAGES
- run: make -e SPHINXOPTS="-D language='pl' -D gettext_compact=0 -W --keep-going" ${{ matrix.format }}
working-directory: ./Doc
- uses: actions/upload-artifact@master
with:
name: build-${{ matrix.version }}-${{ matrix.format }}
path: Doc/build/${{ matrix.format }}
output-pdf:
runs-on: ubuntu-latest
strategy:
matrix:
version: [3.8, 3.9]
needs: ['build-translation']
steps:
- uses: actions/download-artifact@master
with:
name: build-${{ matrix.version }}-latex
- run: sudo apt-get install -y latexmk texlive-xetex fonts-freefont-otf xindy
- run: make
- uses: actions/upload-artifact@master
with:
name: build-${{ matrix.version }}-pdf
path: .