All builds are broken again. <@U01ADKHBJKC> last t...
# contributing-to-airbyte
c
All builds are broken again. @Jared Rhizor (Airbyte) last time we discussed this, I think we agree that the next step was to remove integration builds from core build. Is that still seem like the right next step?
u
That’s probably the best temporary option
u
u
Basically go one by one and clean up after
u
kk. i think i can work on this assuming you got stuff in process.
u
basically i'm going through anywhere in the main build where we ./gradlew build and replacing it with ./gradlew composeBuild, yeah?
u
it’s probably better to do
CORE_ONLY=true
u
I guess we can still format everything
u
basically
u
Copy code
- name: Build
        run: ./gradlew --no-daemon build --scan
to
Copy code
- name: Build
        run: CORE_ONLY=true ./gradlew --no-daemon build --scan
u
which actually builds quite a different set than composeBuild