summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-29 13:22:26 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-03-29 23:42:14 +0200
commit8a0d7a5be801b4d7370b97ad14715a7c9261226d (patch)
tree241006742e7cd2379b5a0821f5b99877a39e0f67
parent6cd4eefd9270354e3554c2200bd3c8a96959508c (diff)
downloadqutebrowser-8a0d7a5be801b4d7370b97ad14715a7c9261226d.tar.gz
qutebrowser-8a0d7a5be801b4d7370b97ad14715a7c9261226d.zip
scripts: Pass GitHub token via commandline args
-rw-r--r--.github/workflows/bleeding.yml2
-rwxr-xr-xscripts/dev/build_release.py38
-rwxr-xr-xscripts/dev/update_3rdparty.py23
-rw-r--r--tests/unit/utils/test_version.py2
4 files changed, 42 insertions, 23 deletions
diff --git a/.github/workflows/bleeding.yml b/.github/workflows/bleeding.yml
index 6d31d9513..1544a3bc2 100644
--- a/.github/workflows/bleeding.yml
+++ b/.github/workflows/bleeding.yml
@@ -59,7 +59,7 @@ jobs:
python -m pip install -U pip
python -m pip install -U -r misc/requirements/requirements-tox.txt
- name: Run tox
- run: tox -e build-release -- --asciidoc ../asciidoc/asciidoc.py
+ run: tox -e build-release -- --asciidoc ../asciidoc/asciidoc.py --gh-token "${{ secrets.GITHUB_TOKEN }}"
irc:
timeout-minutes: 2
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index 5f739a4dd..bcc5a3701 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -219,7 +219,7 @@ INFO_PLIST_UPDATES = {
}
-def build_mac():
+def build_mac(*, gh_token):
"""Build macOS .dmg/.app."""
utils.print_title("Cleaning up...")
for f in ['wc.dmg', 'template.dmg']:
@@ -230,7 +230,7 @@ def build_mac():
for d in ['dist', 'build']:
shutil.rmtree(d, ignore_errors=True)
utils.print_title("Updating 3rdparty content")
- update_3rdparty.run(ace=False, pdfjs=True, fancy_dmg=False)
+ update_3rdparty.run(ace=False, pdfjs=True, fancy_dmg=False, gh_token=gh_token)
utils.print_title("Building .app via pyinstaller")
call_tox('pyinstaller-64', '-r')
utils.print_title("Patching .app")
@@ -318,10 +318,11 @@ def _build_windows_single(*, x64, skip_packaging):
)
-def build_windows(*, skip_packaging, skip_32bit, skip_64bit):
+def build_windows(*, gh_token, skip_packaging, skip_32bit, skip_64bit):
"""Build windows executables/setups."""
utils.print_title("Updating 3rdparty content")
- update_3rdparty.run(nsis=True, ace=False, pdfjs=True, fancy_dmg=False)
+ update_3rdparty.run(nsis=True, ace=False, pdfjs=True, fancy_dmg=False,
+ gh_token=gh_token)
utils.print_title("Building Windows binaries")
@@ -424,15 +425,26 @@ def test_makefile():
'DESTDIR={}'.format(tmpdir), 'install'], check=True)
-def read_github_token():
+def read_github_token(arg_token, *, optional=False):
"""Read the GitHub API token from disk."""
+ if arg_token is not None:
+ return arg_token
+
token_file = os.path.join(os.path.expanduser('~'), '.gh_token')
+ if not os.path.exists(token_file):
+ if optional:
+ return None
+ else:
+ raise Exception(
+ "GitHub token needed, but ~/.gh_token not found, "
+ "and --gh-token not given.")
+
with open(token_file, encoding='ascii') as f:
token = f.read().strip()
return token
-def github_upload(artifacts, tag):
+def github_upload(artifacts, tag, gh_token):
"""Upload the given artifacts to GitHub.
Args:
@@ -443,8 +455,7 @@ def github_upload(artifacts, tag):
import github3.exceptions
utils.print_title("Uploading to github...")
- token = read_github_token()
- gh = github3.login(token=token)
+ gh = github3.login(token=gh_token)
repo = gh.repository('qutebrowser', 'qutebrowser')
release = None # to satisfy pylint
@@ -509,6 +520,8 @@ def main():
parser.add_argument('--asciidoc-python', help="Python to use for asciidoc."
"If not given, the current Python interpreter is used.",
nargs='?')
+ parser.add_argument('--gh-token', help="GitHub token to use.",
+ nargs='?')
parser.add_argument('--upload', action='store_true', required=False,
help="Toggle to upload the release to GitHub.")
parser.add_argument('--skip-packaging', action='store_true', required=False,
@@ -526,7 +539,9 @@ def main():
# Fail early when trying to upload without github3 installed
# or without API token
import github3 # pylint: disable=unused-import
- read_github_token()
+ gh_token = read_github_token(args.gh_token)
+ else:
+ gh_token = read_github_token(args.gh_token, optional=True)
if not misc_checks.check_git():
utils.print_error("Refusing to do a release with a dirty git tree")
@@ -539,12 +554,13 @@ def main():
if os.name == 'nt':
artifacts = build_windows(
+ gh_token=gh_token,
skip_packaging=args.skip_packaging,
skip_32bit=args.skip_32bit,
skip_64bit=args.skip_64bit,
)
elif sys.platform == 'darwin':
- artifacts = build_mac()
+ artifacts = build_mac(gh_token=gh_token)
else:
upgrade_sdist_dependencies()
test_makefile()
@@ -556,7 +572,7 @@ def main():
utils.print_title("Press enter to release {}...".format(version_tag))
input()
- github_upload(artifacts, version_tag)
+ github_upload(artifacts, version_tag, gh_token=gh_token)
if upload_to_pypi:
pypi_upload(artifacts)
else:
diff --git a/scripts/dev/update_3rdparty.py b/scripts/dev/update_3rdparty.py
index 76f77303c..88f56b7f3 100755
--- a/scripts/dev/update_3rdparty.py
+++ b/scripts/dev/update_3rdparty.py
@@ -64,7 +64,7 @@ def download_nsis_plugins():
urllib.request.urlcleanup()
-def get_latest_pdfjs_url():
+def get_latest_pdfjs_url(gh_token):
"""Get the URL of the latest pdf.js prebuilt package.
Returns a (version, url)-tuple.
@@ -73,12 +73,12 @@ def get_latest_pdfjs_url():
endpoint = 'repos/mozilla/pdf.js/releases/latest'
request = urllib.request.Request(f'{github_api}/{endpoint}')
- token = os.environ.get('GITHUB_TOKEN')
- if token is not None:
+ if gh_token is not None:
# Without token will work as well, but has a strict rate limit, so we need to
# use the token on CI.
- request.add_header('Authorization', f'token {token}')
- print("Using GITHUB_TOKEN to authorize to GitHub.")
+ request.add_header('Authorization', f'token {gh_token}')
+ elif 'CI' in os.environ:
+ raise Exception("No GitHub token given on CI")
with urllib.request.urlopen(request) as fp:
data = json.loads(fp.read().decode('utf-8'))
@@ -88,16 +88,17 @@ def get_latest_pdfjs_url():
return (version_name, download_url)
-def update_pdfjs(target_version=None):
+def update_pdfjs(target_version=None, gh_token=None):
"""Download and extract the latest pdf.js version.
If target_version is not None, download the given version instead.
Args:
target_version: None or version string ('x.y.z')
+ gh_token: GitHub token to use for the API. Optional except on CI.
"""
if target_version is None:
- version, url = get_latest_pdfjs_url()
+ version, url = get_latest_pdfjs_url(gh_token)
else:
# We need target_version as x.y.z, without the 'v' prefix, though the
# user might give it on the command line
@@ -167,12 +168,12 @@ def test_dicts():
def run(nsis=False, ace=False, pdfjs=True, fancy_dmg=False, pdfjs_version=None,
- dicts=False):
+ dicts=False, gh_token=None):
"""Update components based on the given arguments."""
if nsis:
download_nsis_plugins()
if pdfjs:
- update_pdfjs(pdfjs_version)
+ update_pdfjs(pdfjs_version, gh_token=gh_token)
if ace:
update_ace()
if fancy_dmg:
@@ -197,9 +198,11 @@ def main():
help='Test whether all available dictionaries '
'can be reached at the remote repository.',
required=False, action='store_true')
+ parser.add_argument(
+ '--gh-token', help="GitHub token to use.", nargs='?')
args = parser.parse_args()
run(nsis=False, ace=True, pdfjs=True, fancy_dmg=args.fancy_dmg,
- pdfjs_version=args.pdfjs, dicts=args.dicts)
+ pdfjs_version=args.pdfjs, dicts=args.dicts, gh_token=args.gh_token)
if __name__ == '__main__':
diff --git a/tests/unit/utils/test_version.py b/tests/unit/utils/test_version.py
index 399b8380d..1860eda85 100644
--- a/tests/unit/utils/test_version.py
+++ b/tests/unit/utils/test_version.py
@@ -1006,7 +1006,7 @@ class TestWebEngineVersions:
try:
from PyQt5.QtWebEngine import PYQT_WEBENGINE_VERSION_STR
except ImportError as e:
- # QtWebKit or QtWebEngine < 5.13
+ # QtWebKit or QtWebEngine < 5.1'../3
pytest.skip(str(e))
pyqt_webengine_version = version._get_pyqt_webengine_qt_version()