Update Couchbase versions #83
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: Docker | |
on: | |
push: | |
branches: | |
- main | |
# Run tests for any PRs. | |
pull_request: | |
env: | |
IMAGE_NAME: btburnett3/couchbasefakeit | |
jobs: | |
# Run tests. | |
# See also https://docs.docker.com/docker-hub/builds/automated-testing/ | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
couchbase-version: | |
- enterprise-6.6.0 | |
- enterprise-6.6.6 | |
- community-7.0.2 | |
- enterprise-7.0.5 | |
- community-7.1.1 | |
- enterprise-7.1.5 | |
- community-7.2.2 | |
- enterprise-7.2.2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: | | |
if [ -f docker-compose.test.yml ]; then | |
docker-compose --file docker-compose.test.yml build | |
docker-compose --file docker-compose.test.yml run sut | |
else | |
docker build . --file Dockerfile --build-arg COUCHBASE_TAG=${{ matrix.couchbase-version }} | |
fi | |
# See also https://docs.docker.com/docker-hub/builds/ | |
push: | |
# Ensure test job passes before pushing image. | |
needs: test | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
strategy: | |
matrix: | |
couchbase-version: | |
- enterprise-6.6.0 | |
- enterprise-6.6.6 | |
- community-7.0.2 | |
- enterprise-7.0.5 | |
- community-7.1.1 | |
- enterprise-7.1.5 | |
- community-7.2.2 | |
- enterprise-7.2.2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build image | |
run: docker build . --file Dockerfile --build-arg COUCHBASE_TAG=${{ matrix.couchbase-version }} --tag $IMAGE_NAME | |
- name: Log into registry | |
run: echo "${{ secrets.DOCKER_TOKEN }}" | docker login -u btburnett3 --password-stdin | |
- name: Push image | |
run: | | |
echo Version: ${{ matrix.couchbase-version }} | |
docker tag $IMAGE_NAME $IMAGE_NAME:${{ matrix.couchbase-version }} | |
docker push $IMAGE_NAME:${{ matrix.couchbase-version }} |