This is an automated email from the ASF dual-hosted git repository. elek pushed a commit to branch github-actions in repository https://gitbox.apache.org/repos/asf/incubator-ratis.git
commit baab6e46673a26d68b55ccb2c1195a6e5921b9dc Author: Márton Elek <[email protected]> AuthorDate: Tue Sep 24 16:29:55 2019 +0200 parameterized actions --- .github/actions/build/entrypoint.sh | 2 +- .github/workflows/main.yml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/build/entrypoint.sh b/.github/actions/build/entrypoint.sh index 3324505..ff6b962 100755 --- a/.github/actions/build/entrypoint.sh +++ b/.github/actions/build/entrypoint.sh @@ -1,3 +1,3 @@ #!/bin/sh -l -./dev-support/checks/build.sh +./dev-support/checks/${TEST_TYPE:-build}.sh diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e34c781..345e7a2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,5 +7,7 @@ jobs: steps: - uses: actions/checkout@master - uses: ./.github/actions/build + env: + TEST_TYPE: build
