https://linen.dev logo
c

charles

02/19/2021, 5:12 PM
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

user

02/19/2021, 5:18 PM
That’s probably the best temporary option
u

user

02/19/2021, 5:18 PM
u

user

02/19/2021, 5:18 PM
Basically go one by one and clean up after
u

user

02/19/2021, 5:19 PM
kk. i think i can work on this assuming you got stuff in process.
u

user

02/19/2021, 5:19 PM
basically i'm going through anywhere in the main build where we ./gradlew build and replacing it with ./gradlew composeBuild, yeah?
u

user

02/19/2021, 6:14 PM
it’s probably better to do
CORE_ONLY=true
u

user

02/19/2021, 6:14 PM
I guess we can still format everything
u

user

02/19/2021, 6:15 PM
basically
u

user

02/19/2021, 6:15 PM
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

user

02/19/2021, 6:18 PM
which actually builds quite a different set than composeBuild