@@ -10,11 +10,21 @@ jobs:
10
10
test-clean-install :
11
11
needs : build
12
12
runs-on : ubuntu-latest
13
+ strategy :
14
+ matrix :
15
+ mode : ['cache', 'proxy']
13
16
steps :
17
+ - run : sudo apt-get update && sudo apt-get install -y debconf-utils
18
+ - run : echo gitaptly gitaptly/MODE string ${{ matrix.mode }} | sudo debconf-set-selections
19
+ - run : curl https://api.github.com/repos/plengauer/abom-http/releases/latest | jq -r '.assets[].browser_download_url' | xargs wget -O ./abomhttp.deb && sudo apt-get install ./abomhttp.deb
14
20
- uses : actions/download-artifact@v4
15
21
with :
16
22
name : package.deb
17
23
- run : sudo apt-get -y install ./package.deb
24
+ - run : cat /var/lib/gitaptly/dists/stable/main/binary-all/Packages && find /var/lib/gitaptly
25
+ - run : ps -ef | grep ncat
26
+ - run : time wget http://127.0.0.1:8000/dists/stable/main/binary-all/Packages
27
+ - run : time wget http://127.0.0.1:8000/pool/main/plengauer/Utilities/auto_management_1.3.3.deb
18
28
- run : echo "deb [arch=all] http://127.0.0.1:8000/ stable main" | sudo tee /etc/apt/sources.list.d/example.list
19
29
- run : sudo apt-get update --allow-insecure-repositories
20
30
- run : sudo apt-get -y install --allow-unauthenticated auto-management
23
33
test-token :
24
34
needs : build
25
35
runs-on : ubuntu-latest
36
+ strategy :
37
+ matrix :
38
+ mode : ['cache', 'proxy']
26
39
steps :
27
- - run : sudo apt-get install -y debconf-utils
40
+ - run : sudo apt-get update && sudo apt-get install -y debconf-utils
41
+ - run : echo gitaptly gitaptly/MODE string ${{ matrix.mode }} | sudo debconf-set-selections
42
+ - run : curl https://api.github.com/repos/plengauer/abom-http/releases/latest | jq -r '.assets[].browser_download_url' | xargs wget -O ./abomhttp.deb && sudo apt-get install ./abomhttp.deb
28
43
- run : echo gitaptly gitaptly/GITHUB_API_TOKEN string $GITHUB_API_TOKEN | sudo debconf-set-selections
29
44
env :
30
45
GITHUB_API_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
55
test-observed :
41
56
needs : build
42
57
runs-on : ubuntu-latest
58
+ strategy :
59
+ matrix :
60
+ mode : ['cache', 'proxy']
43
61
steps :
62
+ - run : sudo apt-get update && sudo apt-get install -y debconf-utils
63
+ - run : echo gitaptly gitaptly/MODE string ${{ matrix.mode }} | sudo debconf-set-selections
64
+ - run : curl https://api.github.com/repos/plengauer/abom-http/releases/latest | jq -r '.assets[].browser_download_url' | xargs wget -O ./abomhttp.deb && sudo apt-get install ./abomhttp.deb
44
65
- run : wget -O - https://raw.githubusercontent.com/plengauer/opentelemetry-bash/main/INSTALL.sh | sh -E
45
66
- uses : actions/download-artifact@v4
46
67
with :
@@ -54,14 +75,31 @@ jobs:
54
75
test-upgrade :
55
76
needs : build
56
77
runs-on : ubuntu-latest
78
+ strategy :
79
+ matrix :
80
+ mode : ['cache', 'proxy']
57
81
steps :
58
- - run : wget https://github.com/plengauer/GitAptly/releases/download/v2.0.0/gitaptly_2.0.0.deb
59
- - run : sudo apt-get -y install ./gitaptly_2.0.0.deb
82
+ - run : sudo apt-get update && sudo apt-get install -y debconf-utils
83
+ - run : echo gitaptly gitaptly/MODE string ${{ matrix.mode }} | sudo debconf-set-selections
84
+ - run : curl https://api.github.com/repos/plengauer/abom-http/releases/latest | jq -r '.assets[].browser_download_url' | xargs wget -O ./abomhttp.deb && sudo apt-get install ./abomhttp.deb
85
+ # - run: wget https://github.com/plengauer/GitAptly/releases/download/v2.0.0/gitaptly_2.0.0.deb
86
+ # - run: sudo apt-get -y install ./gitaptly_2.0.0.deb
87
+ # - run: cat /var/lib/gitaptly/dists/stable/main/binary-all/Packages && find /var/lib/gitaptly && ls -la /var/lib/gitaptly/*/main/*/* || true
88
+ - run : wget https://github.com/plengauer/GitAptly/releases/download/v3.14.0/gitaptly_3.14.0.deb
89
+ - run : sudo apt-get -y install ./gitaptly_3.14.0.deb
90
+ - run : cat /var/lib/gitaptly/dists/stable/main/binary-all/Packages && find /var/lib/gitaptly && ls -la /var/lib/gitaptly/*/main/*/* || true
60
91
- uses : actions/download-artifact@v4
61
92
with :
62
93
name : package.deb
63
94
- run : sudo apt-get -y install ./package.deb
95
+ - run : cat /var/lib/gitaptly/dists/stable/main/binary-all/Packages && find /var/lib/gitaptly && ls -la /var/lib/gitaptly/*/main/*/* || true
64
96
- run : echo "deb [arch=all] http://127.0.0.1:8000/ stable main" | sudo tee /etc/apt/sources.list.d/example.list
65
97
- run : sudo apt-get update --allow-insecure-repositories
66
98
- run : sudo apt-get -y install --allow-unauthenticated auto-management
67
99
- run : sudo apt-get -y remove gitaptly
100
+
101
+ test-all :
102
+ needs : [ test-clean-install, test-token, test-observed, test-upgrade ]
103
+ runs-on : ubuntu-latest
104
+ steps :
105
+ - run : exit 0
0 commit comments