Skip to content

Commit 9fd9dc7

Browse files
gloursndeloof
authored andcommitted
ci: remove unused e2e job from merge workflow
The e2e job targets desktop runners (desktop-windows, desktop-macos, desktop-m1) that are not configured anymore for this project. Signed-off-by: Guillaume Lours <glours@users.noreply.github.com>
1 parent 977a431 commit 9fd9dc7

File tree

1 file changed

+0
-56
lines changed

1 file changed

+0
-56
lines changed

.github/workflows/merge.yml

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -18,62 +18,6 @@ env:
1818
REPO_SLUG: "docker/compose-bin"
1919

2020
jobs:
21-
e2e:
22-
name: Build and test
23-
runs-on: ${{ matrix.os }}
24-
timeout-minutes: 15
25-
strategy:
26-
fail-fast: false
27-
matrix:
28-
os: [desktop-windows, desktop-macos, desktop-m1]
29-
# mode: [plugin, standalone]
30-
mode: [plugin]
31-
env:
32-
GO111MODULE: "on"
33-
steps:
34-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
35-
36-
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
37-
with:
38-
go-version-file: '.go-version'
39-
cache: true
40-
check-latest: true
41-
42-
- name: List Docker resources on machine
43-
run: |
44-
docker ps --all
45-
docker volume ls
46-
docker network ls
47-
docker image ls
48-
- name: Remove Docker resources on machine
49-
continue-on-error: true
50-
run: |
51-
docker kill $(docker ps -q)
52-
docker rm -f $(docker ps -aq)
53-
docker volume rm -f $(docker volume ls -q)
54-
docker ps --all
55-
56-
- name: Unit tests
57-
run: make test
58-
59-
- name: Build binaries
60-
run: |
61-
make
62-
- name: Check arch of go compose binary
63-
run: |
64-
file ./bin/build/docker-compose
65-
if: ${{ !contains(matrix.os, 'desktop-windows') }}
66-
-
67-
name: Test plugin mode
68-
if: ${{ matrix.mode == 'plugin' }}
69-
run: |
70-
make e2e-compose
71-
-
72-
name: Test standalone mode
73-
if: ${{ matrix.mode == 'standalone' }}
74-
run: |
75-
make e2e-compose-standalone
76-
7721
bin-image-prepare:
7822
runs-on: ubuntu-24.04
7923
outputs:

0 commit comments

Comments
 (0)