mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
ci: publish to API support
This commit is contained in:
parent
45b71f2386
commit
d6c5ef2a0a
3 changed files with 62 additions and 1 deletions
2
.github/workflows/master.yml
vendored
2
.github/workflows/master.yml
vendored
|
@ -41,5 +41,5 @@ jobs:
|
||||||
- name: Archive
|
- name: Archive
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: hysteria-master
|
name: hysteria-master-${{ github.sha }}
|
||||||
path: build
|
path: build
|
||||||
|
|
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -41,3 +41,9 @@ jobs:
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
files: build/*
|
files: build/*
|
||||||
|
|
||||||
|
- name: Publish to API
|
||||||
|
run: |
|
||||||
|
pip install requests
|
||||||
|
export HY_API_POST_KEY=${{ secrets.HY2_API_POST_KEY }}
|
||||||
|
python hyperbole.py publish
|
||||||
|
|
55
hyperbole.py
55
hyperbole.py
|
@ -3,10 +3,12 @@
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
import subprocess
|
||||||
import datetime
|
import datetime
|
||||||
import shutil
|
import shutil
|
||||||
|
import requests
|
||||||
|
|
||||||
# Hyperbole is the official build script for Hysteria.
|
# Hyperbole is the official build script for Hysteria.
|
||||||
# Available environment variables for controlling the build:
|
# Available environment variables for controlling the build:
|
||||||
|
@ -116,6 +118,22 @@ def get_app_version():
|
||||||
return app_version
|
return app_version
|
||||||
|
|
||||||
|
|
||||||
|
def get_app_version_code(str=None):
|
||||||
|
if not str:
|
||||||
|
str = get_app_version()
|
||||||
|
|
||||||
|
match = re.search(r"v(\d+)\.(\d+)\.(\d+)", str)
|
||||||
|
|
||||||
|
if match:
|
||||||
|
major, minor, patch = match.groups()
|
||||||
|
major = major.zfill(2)[:2]
|
||||||
|
minor = minor.zfill(2)[:2]
|
||||||
|
patch = patch.zfill(2)[:2]
|
||||||
|
return int(f"{major}{minor}{patch[:2]}")
|
||||||
|
else:
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
def get_app_commit():
|
def get_app_commit():
|
||||||
app_commit = os.environ.get("HY_APP_COMMIT")
|
app_commit = os.environ.get("HY_APP_COMMIT")
|
||||||
if not app_commit:
|
if not app_commit:
|
||||||
|
@ -329,6 +347,35 @@ def cmd_test(module=None):
|
||||||
print("Failed to test %s" % dir)
|
print("Failed to test %s" % dir)
|
||||||
|
|
||||||
|
|
||||||
|
def cmd_publish(urgent=False):
|
||||||
|
if not check_build_env():
|
||||||
|
return
|
||||||
|
|
||||||
|
app_version = get_app_version()
|
||||||
|
app_version_code = get_app_version_code(app_version)
|
||||||
|
if app_version_code == 0:
|
||||||
|
print("Invalid app version")
|
||||||
|
return
|
||||||
|
|
||||||
|
payload = {
|
||||||
|
"code": app_version_code,
|
||||||
|
"ver": app_version,
|
||||||
|
"chan": "release",
|
||||||
|
"url": "https://github.com/apernet/hysteria/releases",
|
||||||
|
"urgent": urgent,
|
||||||
|
}
|
||||||
|
headers = {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
"Authorization": os.environ.get("HY_API_POST_KEY"),
|
||||||
|
}
|
||||||
|
resp = requests.post("https://api.hy2.io/v1/update", json=payload, headers=headers)
|
||||||
|
|
||||||
|
if resp.status_code == 200:
|
||||||
|
print("Published %s" % app_version)
|
||||||
|
else:
|
||||||
|
print("Failed to publish %s, status code: %d" % (app_version, resp.status_code))
|
||||||
|
|
||||||
|
|
||||||
def cmd_clean():
|
def cmd_clean():
|
||||||
shutil.rmtree(BUILD_DIR, ignore_errors=True)
|
shutil.rmtree(BUILD_DIR, ignore_errors=True)
|
||||||
|
|
||||||
|
@ -373,6 +420,12 @@ def main():
|
||||||
p_test = p_cmd.add_parser("test", help="Test the code")
|
p_test = p_cmd.add_parser("test", help="Test the code")
|
||||||
p_test.add_argument("module", nargs="?", help="Module to test")
|
p_test.add_argument("module", nargs="?", help="Module to test")
|
||||||
|
|
||||||
|
# Publish
|
||||||
|
p_pub = p_cmd.add_parser("publish", help="Publish the current version")
|
||||||
|
p_pub.add_argument(
|
||||||
|
"-u", "--urgent", action="store_true", help="Publish as an urgent update"
|
||||||
|
)
|
||||||
|
|
||||||
# Clean
|
# Clean
|
||||||
p_cmd.add_parser("clean", help="Clean the build directory")
|
p_cmd.add_parser("clean", help="Clean the build directory")
|
||||||
|
|
||||||
|
@ -393,6 +446,8 @@ def main():
|
||||||
cmd_tidy()
|
cmd_tidy()
|
||||||
elif args.command == "test":
|
elif args.command == "test":
|
||||||
cmd_test(args.module)
|
cmd_test(args.module)
|
||||||
|
elif args.command == "publish":
|
||||||
|
cmd_publish(args.urgent)
|
||||||
elif args.command == "clean":
|
elif args.command == "clean":
|
||||||
cmd_clean()
|
cmd_clean()
|
||||||
elif args.command == "about":
|
elif args.command == "about":
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue