You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Issue:**
The most recent release failed for 2 different reasons:
1) Many cross-compilation jobs failed, they all [use builder like this](https://github.com/awslabs/aws-crt-java/blob/ff164f25866afbcea64d61226904eb2ab420b348/codebuild/cd/generic-unix-build.sh#L31-L33)
- failed while doing: `mv target/cmake-build/aws-crt-java/* target/cmake-build/`
- error message: "target/cmake-build/deps already present"
2) The `aws-crt-java-manylinux-x64-fips` job failed with error "Could not find Go"
**Description of changes:**
1) Fix 1st issue by doing `mv` on the 1 directory we care about, instead of doing `mv` on a wildcard where lots of stuff we don't care about can collide
2) Fix 2nd issue by installing golang via package manager
- Previously, it was manually unpacking golang to a folder, and adding a relative path (`.go/go/bin`) to `$PATH` (which is weird usually you add absolute paths). And broke when the new "prebuild aws-lc" logic changed the working directory
3) Other small fixes
0 commit comments