Bump github.com/onsi/gomega from 1.33.1 to 1.35.0 #392
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: e2e_test | |
on: | |
pull_request: | |
branches: | |
- OSC-MIGRATION | |
paths: | |
- "**.go" | |
- "Dockerfile" | |
- "Makefile" | |
- "go.*" | |
- "deploy/k8s-osc-ccm/**.yaml" | |
push: | |
branches: [ OSC-MIGRATION ] | |
paths: | |
- "**.go" | |
- "Dockerfile" | |
- "Makefile" | |
- "go.*" | |
- "deploy/k8s-osc-ccm/**.yaml" | |
- ".github/workflows/e2e_test.yml" | |
workflow_dispatch: | |
jobs: | |
create_cluster: | |
runs-on: [self-hosted, linux] | |
steps: | |
# Retrieve the code from the repo (UNSAFE) | |
- uses: actions/checkout@v2 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: azure/[email protected] | |
- uses: azure/setup-helm@v3 | |
with: | |
version: v3.10.1 | |
- uses: actions/setup-python@v2 | |
- uses: outscale-dev/frieza-github-actions/frieza-clean@master | |
with: | |
access_key: ${{ secrets.OSC_ACCESS_KEY }} | |
secret_key: ${{ secrets.OSC_SECRET_KEY }} | |
region: ${{ secrets.OSC_REGION }} | |
- name: Install osc-cli | |
run: pip install osc-sdk | |
- name: Configure osc-cli | |
run: | | |
apt install -y jq | |
mkdir -p $HOME/.osc | |
jq --null-input --arg accesskey "$osc_access_key" --arg secretkey "$osc_secret_key" --arg region "$osc_region" '{"default": {"access_key" : $accesskey, "secret_key": $secretkey, "region_name": $region, "host": "outscale.com", "https": true, "method": "POST"}}' > $HOME/.osc/config.json | |
env: | |
osc_access_key: ${{ secrets.OSC_ACCESS_KEY }} | |
osc_secret_key: ${{ secrets.OSC_SECRET_KEY }} | |
osc_region: ${{ secrets.OSC_REGION }} | |
- name: Build image | |
run: | | |
make buildx-image image-tag | |
env: | |
REGISTRY_IMAGE: localhost:4242/osc/cloud-provider-osc | |
VERSION: ${{ format('{0}.{1}', github.sha, github.run_attempt) }} | |
## Create VPC Cluster | |
- name: Test on VPC cluster | |
uses: ./.github/local_action/start_ccm_e2e | |
with: | |
osc_access_key: ${{ secrets.OSC_ACCESS_KEY }} | |
osc_secret_key: ${{ secrets.OSC_SECRET_KEY }} | |
osc_region: ${{ secrets.OSC_REGION }} | |
public_cloud: "false" | |
image_id: ${{ secrets.OMI_ID }} | |
version: ${{ format('{0}.{1}', github.sha, github.run_attempt) }} | |
## Create Public Cloud Cluster | |
- name: Test on Public cluster | |
uses: ./.github/local_action/start_ccm_e2e | |
with: | |
osc_access_key: ${{ secrets.OSC_ACCESS_KEY }} | |
osc_secret_key: ${{ secrets.OSC_SECRET_KEY }} | |
osc_region: ${{ secrets.OSC_REGION }} | |
public_cloud: "true" | |
image_id: ${{ secrets.OMI_ID }} | |
version: ${{ format('{0}.{1}', github.sha, github.run_attempt) }} | |
- name: Clean images | |
run: | | |
docker image prune -a -f |