update ingestion ui #6201
Workflow file for this run
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: Run Ruby app tests | |
on: | |
push: | |
branches: | |
- '*' | |
- '*/*' | |
- '*/*/*' | |
- '!master' | |
- '!swarm/stacks' | |
- '!production' | |
- '!staging' | |
- '!production-build' | |
- '!staging-build' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test-app: | |
- metis | |
- magma | |
- janus | |
- gnomon | |
- polyphemus | |
- timur | |
- etna | |
- deployer | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: docker login | |
env: | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
run: docker login -p "${DOCKER_TOKEN}" -u etnaagent | |
- name: Run ${{ matrix.test-app }} test suite | |
id: app_first_test_run | |
env: | |
# Runs tests and builds images, but does not push (PUSH_IMAGES not set to 1) | |
IMAGES_PREFIX: etnaagent/ | |
IS_CI: 1 | |
CI_SECRET: ${{ secrets.CI_SECRET }} | |
IMAGES_POSTFIX: :master | |
run: | | |
make -C ${{ matrix.test-app }} release | |
test-vesta: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: docker login | |
env: | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
run: docker login -p "${DOCKER_TOKEN}" -u etnaagent | |
- name: Run ${{ matrix.test-app }} test suite | |
id: app_first_test_run | |
env: | |
# Runs tests and builds images, but does not push (PUSH_IMAGES not set to 1) | |
IMAGES_PREFIX: etnaagent/ | |
IS_CI: 1 | |
CI_SECRET: ${{ secrets.CI_SECRET }} | |
IMAGES_POSTFIX: :master | |
run: | | |
make -C vesta release | |
make -f Makefile-mac vesta-ui-test |