mirror of
https://github.com/project-zot/zot.git
synced 2025-01-27 23:01:43 -05:00
ci(localstack): pin localstack python package to 2.2.0 and pull container image from ghcr (#1867)
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
This commit is contained in:
parent
3a9a932791
commit
0ec6f8acf8
3 changed files with 37 additions and 9 deletions
26
.github/actions/setup-localstack/action.yaml
vendored
26
.github/actions/setup-localstack/action.yaml
vendored
|
@ -1,16 +1,32 @@
|
|||
name: 'Setup localstack service'
|
||||
description: 'Download & run localstack container'
|
||||
inputs:
|
||||
# inputs for https://github.com/docker/login-action
|
||||
username:
|
||||
description: 'Username used to log against the github registry'
|
||||
required: false
|
||||
default: ${{ github.actor }}
|
||||
password:
|
||||
description: 'Password or personal access token used to log against the github registry'
|
||||
required: false
|
||||
default: ${{ github.token }}
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ inputs.username }}
|
||||
password: ${{ inputs.password }}
|
||||
- shell: bash
|
||||
run: |
|
||||
pip install localstack # Install LocalStack cli
|
||||
docker pull localstack/localstack:2.2 # Make sure to pull the latest version of the image
|
||||
localstack start -d # Start LocalStack in the background
|
||||
pip install localstack==2.2.0 # Install LocalStack cli
|
||||
# Below image was copied manually from localstack/localstack:2.2 and uploaded to ghcr
|
||||
docker pull ghcr.io/project-zot/ci-images/localstack:2.2 # Make sure to pull a working version of the image
|
||||
localstack start -d # Start LocalStack in the background
|
||||
|
||||
echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container
|
||||
localstack wait -t 30 # to become ready before timing out
|
||||
echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container
|
||||
localstack wait -t 30 # to become ready before timing out
|
||||
echo "Startup complete"
|
||||
|
||||
aws dynamodb --endpoint-url http://localhost:4566 --region "us-east-2" create-table --table-name BlobTable --attribute-definitions AttributeName=Digest,AttributeType=S --key-schema AttributeName=Digest,KeyType=HASH --provisioned-throughput ReadCapacityUnits=10,WriteCapacityUnits=5
|
||||
|
|
10
.github/workflows/ecosystem-tools.yaml
vendored
10
.github/workflows/ecosystem-tools.yaml
vendored
|
@ -57,11 +57,17 @@ jobs:
|
|||
- name: Run CI tests
|
||||
run: |
|
||||
make run-blackbox-ci
|
||||
- name: Log in to GitHub Docker Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ github.token }}
|
||||
- name: Install localstack
|
||||
run: |
|
||||
pip install --upgrade pyopenssl
|
||||
pip install localstack awscli-local[ver1] # install LocalStack cli and awslocal
|
||||
docker pull localstack/localstack:2.2 # Make sure to pull the latest version of the image
|
||||
pip install localstack==2.2.0 awscli-local[ver1] # install LocalStack cli and awslocal
|
||||
docker pull ghcr.io/project-zot/ci-images/localstack:2.2 # Make sure to pull a working version of the image
|
||||
localstack start -d # Start LocalStack in the background
|
||||
|
||||
echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container
|
||||
|
|
10
.github/workflows/nightly.yaml
vendored
10
.github/workflows/nightly.yaml
vendored
|
@ -34,11 +34,17 @@ jobs:
|
|||
make bin/skopeo
|
||||
sudo cp bin/skopeo /usr/bin
|
||||
skopeo -v
|
||||
- name: Log in to GitHub Docker Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ github.token }}
|
||||
- name: Install localstack
|
||||
run: |
|
||||
pip install --upgrade pyopenssl
|
||||
pip install localstack awscli-local[ver1] # install LocalStack cli and awslocal
|
||||
docker pull localstack/localstack:2.2 # Make sure to pull the latest version of the image
|
||||
pip install localstack==2.2.0 awscli-local[ver1] # install LocalStack cli and awslocal
|
||||
docker pull ghcr.io/project-zot/ci-images/localstack:2.2 # Make sure to pull the latest version of the image
|
||||
localstack start -d # Start LocalStack in the background
|
||||
|
||||
echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container
|
||||
|
|
Loading…
Add table
Reference in a new issue