File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 99 - " release/**"
1010 pull_request :
1111 schedule :
12- - cron : ' 0 0,12 * * *'
12+ - cron : " 0 0,12 * * *"
1313defaults :
1414 run :
1515 shell : bash
2222 uses : actions/checkout@v3
2323 with :
2424 path : self-hosted
25+
26+ - name : Get Compose
27+ run : |
28+ # Always remove `docker compose` support as that's the newer version
29+ # and comes installed by default nowadays.
30+ sudo rm -f "/usr/local/lib/docker/cli-plugins/docker-compose"
31+ # Docker Compose v1 is installed here, remove it
32+ sudo rm -f "/usr/local/bin/docker-compose"
33+ sudo rm -f "/usr/local/lib/docker/cli-plugins/docker-compose"
34+ sudo mkdir -p "/usr/local/lib/docker/cli-plugins"
35+ sudo curl -L https://github.com/docker/compose/releases/download/v2.7.0/docker-compose-`uname -s`-`uname -m` -o "/usr/local/lib/docker/cli-plugins/docker-compose"
36+ sudo chmod +x "/usr/local/lib/docker/cli-plugins/docker-compose"
37+
2538 - name : End to end tests
2639 uses : getsentry/action-self-hosted-e2e-tests@03010bd2963edc1f47b6e5e03167a4bc1433ea36
2740 with :
You can’t perform that action at this time.
0 commit comments