Skip to content

Commit

Permalink
revert due to actions/runner#904
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekradzyminski committed May 18, 2024
1 parent d72e336 commit 16441e6
Showing 1 changed file with 18 additions and 32 deletions.
50 changes: 18 additions & 32 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,26 @@ name: CI
on: [push]

jobs:
# runDocker:
# runs-on: ubuntu-latest
# services:
# docker:
# image: docker:stable
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# steps:
# - uses: actions/checkout@v4
# - name: Build and run Docker Compose
# run: bash ./run-docker-compose.sh

runDockerWindows:
runs-on: windows-latest
runDocker:
runs-on: ubuntu-latest
services:
docker:
image: docker:stable
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up Docker Compose
run: |
Invoke-WebRequest "https://github.com/docker/compose/releases/download/v2.27.0/docker-compose-windows-x86_64.exe" -OutFile "$env:ProgramFiles\Docker\docker-compose.exe"
echo "$env:ProgramFiles\Docker" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Build and run Docker Compose
run: bash ./run-docker-compose.sh
shell: bash

# runDocker-CI:
# runs-on: ubuntu-latest
# services:
# docker:
# image: docker:stable
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# steps:
# - uses: actions/checkout@v4
# - name: Build and run Docker Compose CI version
# run: bash ./run-docker-compose-ci.sh
runDocker-CI:
runs-on: ubuntu-latest
services:
docker:
image: docker:stable
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps:
- uses: actions/checkout@v4
- name: Build and run Docker Compose CI version
run: bash ./run-docker-compose-ci.sh

0 comments on commit 16441e6

Please sign in to comment.