Merge pull request #658 from kiwix/docker-trigger
This commit is contained in:
commit
2b6e02853d
|
@ -130,7 +130,7 @@ def select_build_targets(criteria):
|
||||||
print(build_order)
|
print(build_order)
|
||||||
return build_order
|
return build_order
|
||||||
|
|
||||||
raise "No definition match with current context."
|
raise ValueError("No definition match with current context.")
|
||||||
|
|
||||||
def get_platform_name():
|
def get_platform_name():
|
||||||
from common import PLATFORM_TARGET, OS_NAME
|
from common import PLATFORM_TARGET, OS_NAME
|
||||||
|
@ -143,4 +143,4 @@ def get_platform_name():
|
||||||
name = row["platform_name"]
|
name = row["platform_name"]
|
||||||
return name or None
|
return name or None
|
||||||
|
|
||||||
raise "No definition match with current context."
|
raise ValueError("No definition match with current context.")
|
||||||
|
|
|
@ -214,8 +214,7 @@ jobs:
|
||||||
needs: [Linux]
|
needs: [Linux]
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
env:
|
env:
|
||||||
PLATFORM_TARGET: LINUX_DOCKER_TRIGGER
|
PLATFORM_TARGET: native_static
|
||||||
OS_NAME: LINUX_DOCKER_TRIGGER
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
Loading…
Reference in New Issue