Mixed flavor #195
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: Integration Test | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
test: | |
name: Run tests | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
flavors: | |
- name: cumulus | |
- name: sonic | |
- name: mixed | |
steps: | |
- name: Gain back workspace permissions # https://github.com/actions/checkout/issues/211 | |
run: | | |
[ -d "${GITHUB_WORKSPACE}" ] && sudo chown -R $USER:$USER ${GITHUB_WORKSPACE} | |
- name: Setup Containerlab | |
run: | | |
bash -c "$(curl -sL https://get.containerlab.dev)" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# we can remove desired version again after this fix was released: https://github.com/srl-labs/containerlab/pull/2000 | |
DESIRED_VERSION: v0.56.0 | |
- name: Log in to the container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ secrets.DOCKER_REGISTRY_USER }} | |
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Make tag | |
run: | | |
IMAGE_TAG=$([ "${GITHUB_EVENT_NAME}" == 'pull_request' ] && echo ${GITHUB_HEAD_REF##*/} || echo "latest") | |
echo "MINI_LAB_VM_IMAGE=ghcr.io/metal-stack/mini-lab-vms:${IMAGE_TAG}" >> $GITHUB_ENV | |
echo "MINI_LAB_SONIC_IMAGE=ghcr.io/metal-stack/mini-lab-sonic:${IMAGE_TAG}" >> $GITHUB_ENV | |
- name: Build and push mini-lab-vms container | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images | |
file: ./images/Dockerfile.vms | |
push: true | |
tags: ${{ env.MINI_LAB_VM_IMAGE }} | |
cache-from: type=registry,ref=${{ env.MINI_LAB_VM_IMAGE }} | |
cache-to: type=inline | |
- name: Build and push mini-lab-sonic container | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/sonic | |
push: true | |
tags: ${{ env.MINI_LAB_SONIC_IMAGE }} | |
cache-from: type=registry,ref=${{ env.MINI_LAB_SONIC_IMAGE }} | |
cache-to: type=inline | |
if: ${{ matrix.flavors.name == 'sonic' }} | |
- name: Run integration tests | |
shell: bash | |
run: | | |
./test/ci-cleanup.sh | |
./test/integration.sh | |
env: | |
MINI_LAB_FLAVOR: ${{ matrix.flavors.name }} | |
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }} | |
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |