-
Notifications
You must be signed in to change notification settings - Fork 181
137 lines (119 loc) · 4.28 KB
/
source-gem.yml
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Source gem
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 5 * * 3" # At 05:00 on Wednesday # https://crontab.guru/#0_5_*_*_3
jobs:
job_build_gem:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
- name: Build source gem
run: gem build pg.gemspec
- name: Upload source gem
uses: actions/upload-artifact@v3
with:
name: source-gem
path: "*.gem"
job_test_gem:
name: Test built gem
needs: job_build_gem
strategy:
fail-fast: false
matrix:
include:
- os: windows
ruby: "head"
PGVERSION: 15.1-1-windows-x64
PGVER: "15"
- os: windows
ruby: "2.5"
PGVERSION: 9.4.26-1-windows-x64
PGVER: "9.4"
- os: ubuntu
ruby: "head"
PGVER: "15"
- os: ubuntu
ruby: "3.2"
PGVER: "12"
- os: ubuntu
os_ver: "20.04"
ruby: "2.5"
PGVER: "9.3"
- os: ubuntu
ruby: "truffleruby"
PGVER: "13"
- os: ubuntu
ruby: "truffleruby-head"
PGVER: "15"
- os: macos
ruby: "head"
PGVERSION: 15.1-1-osx
PGVER: "15"
runs-on: ${{ matrix.os }}-${{ matrix.os_ver || 'latest' }}
env:
PGVERSION: ${{ matrix.PGVERSION }}
PGVER: ${{ matrix.PGVER }}
MAKE: make -j2 V=1
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Download gem from build job
uses: actions/download-artifact@v3
with:
name: source-gem
- name: Install required packages Windows
if: matrix.os == 'windows'
shell: cmd
run: ridk exec sh -c "pacman --sync --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc"
- name: Download PostgreSQL Windows
if: matrix.os == 'windows'
run: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
function Unzip {
param([string]$zipfile, [string]$outpath)
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath)
}
$(new-object net.webclient).DownloadFile("http://get.enterprisedb.com/postgresql/postgresql-$env:PGVERSION-binaries.zip", "postgresql-binaries.zip")
Unzip "postgresql-binaries.zip" "."
echo "$pwd/pgsql/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "PGUSER=$env:USERNAME" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "PGPASSWORD=" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Download PostgreSQL Ubuntu
if: matrix.os == 'ubuntu'
run: |
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main $PGVER" | sudo tee -a /etc/apt/sources.list.d/pgdg.list
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get -y update
sudo apt-get -y --allow-downgrades install postgresql-$PGVER libpq5=$PGVER* libpq-dev=$PGVER*
echo /usr/lib/postgresql/$PGVER/bin >> $GITHUB_PATH
- name: Download PostgreSQL Macos
if: matrix.os == 'macos'
run: |
wget https://get.enterprisedb.com/postgresql/postgresql-$PGVERSION-binaries.zip && \
sudo mkdir -p /Library/PostgreSQL && \
sudo unzip postgresql-$PGVERSION-binaries.zip -d /Library/PostgreSQL/$PGVER && \
echo /Library/PostgreSQL/$PGVER/bin >> $GITHUB_PATH
- run: gem update --system 3.3.26
- run: bundle install
- run: gem install --local *.gem --verbose
- name: Run specs
env:
PG_DEBUG: 0
run: ruby -rpg -S rspec spec/**/*_spec.rb -cfdoc
- name: Print logs if job failed
if: ${{ failure() && matrix.os == 'windows' }}
run: ridk exec cat tmp_test_specs/*.log
- name: Print logs if job failed
if: ${{ failure() && matrix.os != 'windows' }}
run: cat tmp_test_specs/*.log