nightly-build #58
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: nightly-build | |
on: | |
schedule: | |
- cron: '55 23 * * *' | |
push: | |
branches: | |
- dev-nightly* | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build-binaries: | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'numaproj/numaflow' | |
name: Build binaries | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/[email protected] | |
with: | |
go-version: '1.19' | |
- name: Build binaries | |
run: | | |
make build | |
chmod -R +x dist | |
- name: Make checksums | |
run: make checksums | |
- name: store artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: binaries | |
path: dist | |
build-push-linux-multi: | |
name: Build & push linux/amd64 and linux/arm64 | |
needs: [ build-binaries ] | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'numaproj/numaflow' | |
strategy: | |
matrix: | |
target: [ numaflow ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Setup Node-Cache | |
uses: actions/cache@v3 | |
with: | |
path: ui/node_modules | |
key: ${{ runner.os }}-node-dep-v1-${{ hashFiles('**/yarn.lock') }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Download binaries | |
uses: actions/download-artifact@v3 | |
with: | |
name: binaries | |
path: dist/ | |
- name: Registry Login | |
uses: docker/login-action@v2 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAYIO_USERNAME }} | |
password: ${{ secrets.QUAYIO_PASSWORD }} | |
- name: Set Version | |
id: version | |
run: | | |
tag=$(date +"%Y%m%d") | |
echo "VERSION=nightly-$tag" >> $GITHUB_OUTPUT | |
- name: Container build and push with arm64/amd64 | |
run: | | |
IMAGE_NAMESPACE=${{ secrets.QUAYIO_ORG }} VERSION=${{ steps.version.outputs.VERSION }} DOCKER_PUSH=true DOCKER_BUILD_ARGS="--label \"quay.expires-after=30d\"" make image-multi | |