Skip to content

Commit

Permalink
Fix GitHub action to install docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
glegoux committed Nov 14, 2024
1 parent 8bd5a5a commit 4f93c67
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 45 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Continuous Integration

on:
push:
branches:
- "main"

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
os: [ubuntu] # centos

steps:
- name: Check out the repository
uses: actions/checkout@v3

- name: Set up Docker
uses: docker/setup-buildx-action@v2

- 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
45 changes: 0 additions & 45 deletions .github/workflows/kerberos-docker.yml

This file was deleted.

0 comments on commit 4f93c67

Please sign in to comment.