I’m getting the following error on a clean build ...
# dev-frontend
s
I’m getting the following error on a clean build
Copy code
:airbyte-integrations:connectors:source-appstore-singer:installLocalReqs
a
Yay, same on my side 😞
s
this package was recently added
let me see what the issue could be
c
weird.
i am not having this issue.
s
running the task again succeeded πŸ€”
Artem, does running the task above individually work?
./gradlew :airbyte-integrations:connectors:source-appstore-singer:installLocalReqs
a
Need some time to finish previous build on freshly started repo. Will check this command after that
πŸ‘πŸΌ 1
btw installReqs were failing, because it was not able to find some 0.0.0 docker container. Is it possible that we do not have something pushed to dockerhub?
c
do you know which one?
a
Copy code
> Task :airbyte-integrations:bases:base-normalization:installReqs
[python] .venv/bin/python -m pip install .[main]
         Processing /Users/jamakase/Projects/clients/airbyte/airbyte-integrations/bases/base-normalization
           WARNING: normalization 0.0.0 does not provide the extra 'main'
         ERROR: Could not find a version that satisfies the requirement airbyte-protocol (from normalization==0.0.0) (from versions: none)
         ERROR: No matching distribution found for airbyte-protocol (from normalization==0.0.0)
c
is this one blocking you? or you just noticed it?
a
I would say it’s sort of a blocker and prevents from finishing import/export
I can try to build on fresh repo and start it on old repo though. This should help, right?
c
cool. looking.
a
I just do not want to replace old repo totally, as I could loose history and some settings I applied locally ( run configurations, formatting settings, prettier and lint support and etc )
c
yeah i understand.
and you ran
./gradlew clean
and the the rm -rf command i mentioned to delete all venvs.
i think you did all of theset hings but just double checking
and are you working on master for right now?
i am seeing this
> Task :airbyte-integrations:bases:base-normalization:installLocalReqs FAILED
which i think you mentioned in the main channel
a
all answers for your questions are yes πŸ™‚
πŸ‘ 1
c
Copy code
> Task :airbyte-integrations:bases:base-normalization:installLocalReqs FAILED
                                   ^
                                    _Nonnull
           /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/stdlib.h:205:22: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
           int      getsubopt(char **, char * const *, char **);
                                    ^
           /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/stdlib.h:205:22: note: insert '_Nullable' if the pointer may be null
           int      getsubopt(char **, char * const *, char **);
yeah seeing this too.
@s @Jared Rhizor (Airbyte) if you
Copy code
./gradlew clean
rm -rf airbyte-integrations/**/.venv/
./gradlew build
do you get the same?
s
running
c
@Artem Astapenko did my error looks like yours?
mine look like C header issues, which might be related to big sur.
j
I’m still on Catalina
a
I think I have something different
but I am still on Catalina
probably thats why I do not have such error.
c
okay. i have a zebra error then.
@Jared Rhizor (Airbyte) and @s can you take over since i can't replicate on my machine/
s
tu
a
but it still sounds like an issue too if its failing because of Big Sur πŸ™‚
c
yeah. i'll work on figuring that out.
@s @Jared Rhizor (Airbyte) were you guys able to figure something out here / is someone still looking?
s
yup looking at the issue
j
lmk if you want another pairs of eyes
c
thanks
fixed my original problem. since big sure i apparently needed to add ssl LD and CPP flags. for posterity (until slack repos it):
Copy code
export LDFLAGS="-L/usr/local/opt/openssl/lib"
export CPPFLAGS="-I/usr/local/opt/openssl/include"
adding these flags to existing flags seems to have fixed it.
j
should put that in the docs
c
agreed. i will do.