-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change the update status as enum and rename Type into UpdateType in Update model #71
Conversation
bors try |
tryBuild succeeded: |
Great test added! 👍 |
bors try |
tryBuild failed: |
I need to rebase this PR since the test is failing. |
3ca04e0
to
995efc0
Compare
995efc0
to
3d3ad75
Compare
bors try |
tryBuild succeeded: |
Build failed: |
bors try |
tryBuild failed: |
There is clearly a problem when installing MeiliSearch on the CI with brew... I don't have any issues on my local machine. And you guys @eskombro @ppamorim @bidoubiwa? |
I have no issues. Installing meilisearch with brew works fine for me! We could install it on the CI with brew update is loooooong :) |
Yes indeed we should change! |
+1 for docker Sorry @ppamorim , I know this is not necessary related to your contribution :) |
Oh I remember, we spent a lot of time with Charlotte about that! Sorry again Pedro because it's not directly related to the issue. We used to use the installation script, but we don't know why, it fails on Let's wait, it's maybe a GitHub issue... It worked a few hours ago. |
Ok! Indeed it probably is a connection/authentication issue coming from GitHub. So if it keeps doing the same we can create a new issue (for the swift CI specifically) and test/solve everything there! |
@eskombro @curquiza Same error here: actions/runner-images#1811 |
Sorted with this change: run: |
brew uninstall [email protected]
brew uninstall [email protected]
brew untap local/openssl
brew untap local/python2
brew update |
If it's a temporary fix I would rather not add it. |
35b61b1
to
3715a7d
Compare
bors try |
tryBuild succeeded: |
bors merge |
Build succeeded: |
84: Fix CI r=curquiza a=ppamorim I don't see they fixing this issue, we are getting stuck due to this problem. Fixes crash in CI reported here: actions/runner-images#1811 Crash happening in the PR #71. Co-authored-by: Pedro Paulo de Amorim <[email protected]> Co-authored-by: Pedro Paulo Amorim <[email protected]>
This PR transforms the status result from the
Update
struct into an enum. This change is needed since the server has a stable API and the user doesn't want to keep comparing strings in the SDK.