generated from duckdb/extension-template
-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (32 loc) · 1.11 KB
/
PostRelease.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
name: Release Verifcation
on:
workflow_dispatch:
jobs:
release-verify:
runs-on: ubuntu-latest
container: ubuntu:20.04
strategy:
fail-fast: false
matrix:
# Leave 0.8.1 of DuckDB out of the matrix until
# 0.1.3 of the extension is released (it adds support for 0.8.1).
# duckdb_version: ['0.8.0', '0.8.1']
duckdb_version: ['0.8.0']
python_version: ['3.8', '3.9', '3.10', '3.11']
arch: ['linux_amd64']
env:
PYTHON_VERSION: ${{ matrix.python_version }}
DUCKDB_VERSION: ${{ matrix.duckdb_version }}
steps:
- name: Install required ubuntu packages
run: |
apt-get update -y -qq
apt-get install -y -qq make curl zip unzip docker.io
- name: Checkout Repository
uses: actions/checkout@v2
- name: Integration Tests
run: |
make RELEASE_SHA=latest post-release-integration
- name: Installer Tests
run: |
make GITHUB_ACCESS_TOKEN=${{ secrets.GITHUB_TOKEN }} test-installer