Build all distros #193
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build all distros | |
on: | |
schedule: | |
- cron: '0 9 * * 1-5' | |
workflow_dispatch: {} | |
jobs: | |
build-all-distros: | |
name: build all distros | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0 | |
with: | |
fetch-depth: 0 | |
- name: Cache go-build and mod | |
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 #v3.3.1 | |
with: | |
path: | | |
~/.cache/go-build/ | |
~/go/pkg/mod/ | |
key: ${{ hashFiles('go.sum') }} | |
- name: Setup Go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe #v4.1.0 | |
with: | |
go-version: 1.18.x | |
- name: Setup deps | |
run: | | |
make install-build-deps | |
- name: build image | |
run: | | |
EKSCTL_IMAGE_VERSION=${GITHUB_REF#refs/*/} make -f Makefile.docker eksctl-image | |
- name: build all | |
run: | | |
make build-all | |
- name: slack on failure | |
if: failure() | |
uses: actions-ecosystem/action-slack-notifier@fc778468d09c43a6f4d1b8cccaca59766656996a #v1.1.0 | |
with: | |
slack_token: ${{ secrets.WEAVEWORKS_SLACK_EKSCTLBOT_TOKEN }} | |
message: ":ahhhhhhhhh: build-all-distros has failed" | |
channel: team-pitch-black | |
color: red | |
verbose: true |