Skip to content

Fix GitHub action to install docker-compose #6

Fix GitHub action to install docker-compose

Fix GitHub action to install docker-compose #6

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu] # centos
steps:
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Docker
uses: docker/setup-buildx-action@v2

Check failure on line 23 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- name: Install Docker Compose
run: |
DOCKER_COMPOSE_VERSION="2.11.2"
sudo curl -L "https://github.com/docker/compose/releases/download/v$DOCKER_COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
- name: Install project
run: |
./.ci/install.sh && \
make gen-conf OS_CONTAINER=${{ matrix.os }} && \
make install OS_CONTAINER=${{ matrix.os }}
- name: Check version
run: .ci/check-version.sh
- name: Test
run: make test
- name: Finish
run: |
cat /tmp/krb5-test-${{ matrix.os }}.log && \
ls -lR && \
./script/inspect.sh && \
./.ci/check-version.sh