Skip to content

Commit

Permalink
Update build image in CI
Browse files Browse the repository at this point in the history
... in order to fix build errors like:
```
Error response from daemon: manifest for weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6 not found
Exited with code 1
```
  • Loading branch information
marccarre committed Nov 20, 2019
1 parent 8207ed5 commit 44a5471
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
machine:
image: ubuntu-1604:201903-01
environment:
BUILD_IMAGE: weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
BUILD_IMAGE: weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
steps:
- checkout
# enabling docker executor will require to use large resource class, which
Expand All @@ -26,7 +26,7 @@ jobs:
machine:
image: ubuntu-1604:201903-01
environment:
BUILD_IMAGE: weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
BUILD_IMAGE: weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
steps:
- checkout
- run: docker pull $BUILD_IMAGE
Expand All @@ -38,7 +38,7 @@ jobs:
machine:
image: ubuntu-1604:201903-01
environment:
BUILD_IMAGE: weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
BUILD_IMAGE: weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
steps:
- checkout
- run: docker pull $BUILD_IMAGE
Expand All @@ -50,7 +50,7 @@ jobs:
machine:
image: ubuntu-1604:201903-01
environment:
BUILD_IMAGE: weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
BUILD_IMAGE: weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
steps:
- add_ssh_keys:
fingerprints:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: docker://weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
- uses: docker://weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
name: Run make lint
with:
entrypoint: make
args: lint
- uses: docker://weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
- uses: docker://weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
name: Run make check-all-generated-files-up-to-date
with:
entrypoint: make
args: check-all-generated-files-up-to-date
- uses: docker://weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
- uses: docker://weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
name: Run make unit-test
with:
entrypoint: make
args: unit-test
- uses: docker://weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
- uses: docker://weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
name: Run make build-integration-test
with:
entrypoint: make
args: build-integration-test
- uses: docker://weaveworks/eksctl-build:1489934160b4ef8f94850d152c456db81a6cceb6
- uses: docker://weaveworks/eksctl-build:0860707392c6f8cb3b2eae8a992f03f9d6ecfe58
name: Run make build
with:
entrypoint: make
Expand Down

0 comments on commit 44a5471

Please sign in to comment.