Skip to content

Commit

Permalink
chore: disable elixir build & publish
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-jonas committed Apr 25, 2024
1 parent 72d18b3 commit a60cbe9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 4 additions & 2 deletions scripts/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ golang () {
--git-host github.com \
-c ./config/client/go.yml.proc.yml
cp "LICENSE" "clients/${PROJECT}/go"

if [ "${PROJECT}" == "hydra" ]; then
(cd "${dir}"; rm go.mod go.sum || true; go mod init "github.com/ory/${PROJECT}-client-go/v2"; go mod tidy -compat=1.17)
elif [ "${PROJECT}" == "client" ]; then
Expand Down Expand Up @@ -329,6 +329,7 @@ elixir () {

file="${dir}/mix.exs"

# 7.4.0
openapi-generator-cli version-manager set 7.4.0
openapi-generator-cli generate -i "${SPEC_FILE}" \
-g elixir \
Expand All @@ -344,7 +345,8 @@ elixir () {
cp "LICENSE" "clients/${PROJECT}/elixir"
}

elixir
# elixir is broken right now: https://github.com/ory/sdk/issues/350
#elixir
typescript
typescript_fetch
rust
Expand Down
3 changes: 1 addition & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ typescript || let "FAIL+=1"
typescript_fetch || let "FAIL+=1"
dart || let "FAIL+=1"
rust || let "FAIL+=1"
elixir || let "FAIL+=1"
# elixir || let "FAIL+=1"
java || let "FAIL+=1"
dotnet || let "FAIL+=1"
upstream || let "FAIL+=1"
Expand All @@ -253,4 +253,3 @@ else
echo "One or more subtasks failed to complete."
exit 1
fi

2 changes: 1 addition & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ elixir () {
(cd "${dir}"; mix test)
}

elixir
# elixir
typescript
typescript_fetch
rust
Expand Down

0 comments on commit a60cbe9

Please sign in to comment.