Fluvio Cloud CI #1410
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: Fluvio Cloud CI | |
concurrency: | |
group: cloud-ci-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: '0 14 * * *' | |
jobs: | |
smoke_test: | |
name: Smoke test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
rust: [stable] | |
java: [8, 11, 16, 17] | |
exclude: | |
- os: macos-latest | |
java: 8 | |
- os: macos-latest | |
java: 16 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install ${{ matrix.rust }} | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
cache: 'gradle' | |
distribution: 'temurin' | |
- name: Run unit tests | |
run: | | |
make test -i | |
- name: Install fluvio | |
run: | | |
curl -fsS https://hub.infinyon.cloud/install/install.sh | bash | |
echo "${HOME}/.fluvio/bin" >> $GITHUB_PATH | |
- name: Login to fluvio cloud | |
run: | | |
fluvio cloud login --email ${FLUVIO_CLOUD_TEST_USERNAME} --password ${FLUVIO_CLOUD_TEST_PASSWORD} --remote 'https://dev.infinyon.cloud' | |
# setup profile | |
fluvio cloud cluster sync | |
env: | |
FLUVIO_CLOUD_TEST_USERNAME: ${{ secrets.FLUVIO_CLOUD_TEST_USERNAME }} | |
FLUVIO_CLOUD_TEST_PASSWORD: ${{ secrets.FLUVIO_CLOUD_TEST_PASSWORD }} | |
- name: Run examples | |
run: | | |
make examples | |
- name: Slack Notification | |
uses: 8398a7/action-slack@v3 | |
if: failure() | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took # selectable (default: repo,message) | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |