-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 1022 Bytes
/
e2e.yml
File metadata and controls
38 lines (32 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: E2E Tests (Full)
on:
push:
pull_request:
jobs:
e2e-full:
runs-on: ubuntu-latest
strategy:
matrix:
maven_provider: [reposilite]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Set up Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: "6.0"
# GitHub runners use Docker Compose v2 only; Makefile calls docker-compose.
- name: Shim docker-compose to docker compose
run: |
printf '#!/bin/sh\nexec docker compose "$@"\n' | sudo tee /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
- name: Run full E2E (${{ matrix.maven_provider }} + Swift publish/resolve + registry API)
run: make test-e2e-full
env:
MAVEN_PROVIDER: ${{ matrix.maven_provider }}
NEXUS_WAIT_TIMEOUT: 360
timeout-minutes: 20