Skip to content

Commit

Permalink
try no pull
Browse files Browse the repository at this point in the history
  • Loading branch information
aajtodd committed Feb 12, 2024
1 parent f5c464f commit 0548a1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,13 @@ jobs:
java-version: 17
cache: 'gradle'
# FIXME - we will need to migrate this to ECR to avoid throttle limits from dockerhub, for now rebuild the images during CI
# - name: Configure Docker Images
# run: |
# ./docker-images/build-all.sh
# docker images
- name: Build and Test ${{ env.PACKAGE_NAME }}
- name: Configure Docker Images
run: |
./docker-images/build-all.sh
docker images
- name: Build and Test ${{ env.PACKAGE_NAME }}
run: |
docker images
./gradlew apiCheck
./gradlew allTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ private fun runCmake(project: Project, target: KotlinNativeTarget, cmakeArgs: Li
val exeName = when (target.konanTarget) {
KonanTarget.LINUX_X64, KonanTarget.LINUX_ARM64 -> {
// cross compiling via dockcross - set the docker exe to cmake
exeArgs.add(0, "cmake")
val containerScriptArgs = listOf("--args", "--pull=never", "--", "cmake")
exeArgs.addAll(0, containerScriptArgs)
"./dockcross-" + target.konanTarget.name.replace("_", "-")
}
else -> "cmake"
Expand Down

0 comments on commit 0548a1b

Please sign in to comment.