Skip to content

Commit

Permalink
ci: update ci runner script
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Sep 27, 2024
1 parent faab5a1 commit c000698
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .circleci/forceRunCI.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
auth=`cat .pat | base64 --wrap=0`
PAT=`cat .pat`
auth=`echo -n "${PAT}:" | base64 --wrap=0`
branch=`git rev-parse --abbrev-ref HEAD`

cdiCoreMap='{ "5.1": "feat/oauth-provider-base" }'
cdiPluginInterfaceMap='{ "5.1": "feat/oauth-provider-base" }'
fdiNodeMap='{ "3.1": "feat/oauth2/base", "4.0": "feat/oauth2/base" }'
fdiWebsiteMap='{ "3.1": "master", "4.0": "master" }'
fdiAuthReactMap='{ "3.1": "feat/oauth2/base", "4.0": "feat/oauth2/base" }'
fdiNodeMap='{ "3.1": "ci/manual_ci_runs", "4.0": "ci/manual_ci_runs" }'
fdiWebsiteMap='{ "1.17": "ci/support_custom_tags", "1.18": "ci/support_custom_tags", "1.19": "ci/support_custom_tags", "2.0": "ci/support_custom_tags", "3.1": "ci/support_custom_tags", "4.0": "ci/support_custom_tags" }'
fdiAuthReactMap='{ "3.1": "feat/oauth2/examples", "4.0": "feat/oauth2/examples" }'

data=`jq -cn --arg branch "$branch" \
--arg cdiCoreMap "$cdiCoreMap" \
Expand Down

0 comments on commit c000698

Please sign in to comment.