Skip to content

Commit

Permalink
ci: experiment with manually runnable ci with pre-set branchnames
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Sep 26, 2024
1 parent d836e9a commit 15691f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .circleci/authReact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ while IFS='"' read -ra ADDR; do
done
done <<< "$version"

coreDriverVersion=`echo $coreDriverArray | jq ". | last"`
coreDriverVersion=`echo $coreDriverVersion | tr -d '"'`
coreFree="null"

if [ -f cdi-core-map.json ]
then
cat cdi-core-map.json
Expand Down
2 changes: 1 addition & 1 deletion .circleci/setupAndTestWithFreeCore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ then
coreTag=$(echo $coreInfo | jq .tag | tr -d '"')
coreVersion=$(echo $coreInfo | jq .version | tr -d '"')
fi
exit 0;

if [ -f "cdi-plugin-interface-map.json" ]
then
pluginInterfaceTag=`cat cdi-plugin-interface-map.json | jq '.["'$coreVersionXYParam'"]' | tr -d '"'`
Expand Down
3 changes: 3 additions & 0 deletions .circleci/website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ while IFS='"' read -ra ADDR; do
done
done <<< "$version"

coreDriverVersion=`echo $coreDriverArray | jq ". | last"`
coreDriverVersion=`echo $coreDriverVersion | tr -d '"'`
coreFree="null"

if [ -f cdi-core-map.json ]
then
cat cdi-core-map.json
Expand Down

0 comments on commit 15691f3

Please sign in to comment.