Skip to content

New CI #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Upcate CI
  • Loading branch information
egeakman committed Dec 4, 2022
commit 967d6bc4aa9871bca126085c3ccea3d44b22363f
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,10 @@ jobs:
run: |
mkdir -p ~/locales/tr/LC_MESSAGES/
cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/
$cwd = pwd
cd ~/locales/tr/LC_MESSAGES/
#find . -name \*.po -execdir sh -c 'msgfmt "$0" -o `basename $0 .po`.mo' '{}' \;
find . -name '*.po' -execdir msgfmt -o {}.mo {}
cd $cwd
git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2)
tree -L 2 ~/locales/tr/LC_MESSAGES/
- name: Prepare venv
Expand Down
2 changes: 1 addition & 1 deletion merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def parse_args():
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
"--cpython_repo",
default=Path("../cpython"),
default=Path("venv/cpython"),
type=Path,
help="Use this given cpython clone.",
)
Expand Down