-
Notifications
You must be signed in to change notification settings - Fork 890
98 lines (88 loc) · 3.47 KB
/
apt-arm-packages.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Test installing our ubuntu and debian ARM64 packages for the latest version.
name: APT ARM64 packages
"on":
schedule:
# run daily 0:00 on main branch
- cron: '0 0 * * *'
push:
tags:
- '*'
branches:
- release_test
jobs:
apt_tests:
name: APT ARM64 ${{ matrix.image }} PG${{ matrix.pg }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Debian images: 10 (buster), 11 (bullseye)
# Ubuntu images: 20.04 LTS (focal), 22.04 (jammy)
image: [ "debian:10-slim","debian:11-slim","ubuntu:focal", "ubuntu:jammy"]
pg: [ 13, 14, 15 ]
steps:
- name: Setup emulation
run: |
sudo apt-get update
sudo apt-get install qemu binfmt-support qemu-user-static
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker run -d --platform=linux/arm64 --name arm_container arm64v8/${{ matrix.image }} sleep 3600
- name: Add repositories
run: |
cat <<"EOF" | docker exec -i arm_container bash
apt-get update
apt-get install -y --no-install-recommends ca-certificates curl \
lsb-release gnupg apt-transport-https sudo postgresql-common
yes | /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
curl -s https://packagecloud.io/install/repositories/timescale/timescaledb/script.deb.sh | bash
EOF
- name: Install timescaledb
run: |
cat <<"EOF" | docker exec -i arm_container bash
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
timescaledb-2-postgresql-${{ matrix.pg }} timescaledb-tools
timescaledb-tune --quiet --yes
EOF
- name: List available versions
run: |
cat <<"EOF" | docker exec -i arm_container bash
apt-cache show timescaledb-2-postgresql-${{ matrix.pg }} \
| grep -e Version: -e Depends: \
| tr '\n' ' ' \
| sed -e 's! Version: !\n!g' -e 's!Version: !!' -e 's!$!\n!'
EOF
- name: Show files in package
run: |
cat <<"EOF" | docker exec -i arm_container bash
dpkg -L timescaledb-2-postgresql-${{ matrix.pg }}
EOF
- uses: actions/checkout@v3
- name: Read versions
id: versions
run: |
# read expected version from version.config
# version will only be a proper version in a release branch so we use update_from_version
# as fallback for main
if grep '^version = [0-9.]\+$' version.config; then
version=$(grep '^version = ' version.config | sed -e 's!^version = !!')
else
version=$(grep '^update_from_version = ' version.config | sed -e 's!^update_from_version = !!')
fi
echo "version=${version}" >>$GITHUB_OUTPUT
- name: Test Installation
run: |
cat <<"EOF" | docker exec -i arm_container bash
set -e
pg_ctlcluster ${{ matrix.pg }} main start
sudo -u postgres psql -X -c "CREATE EXTENSION timescaledb" \
-c "SELECT extname,extversion,version() FROM pg_extension WHERE extname='timescaledb'"
installed_version=$(sudo -u postgres psql -X -t \
-c "SELECT extversion FROM pg_extension WHERE extname='timescaledb';" \
| sed -e 's! !!g')
if [ "${{ steps.versions.outputs.version }}" != "$installed_version" ];then
false
fi
EOF
- name: Kill container
run: |
docker kill arm_container