-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 1.03 KB
/
build_provided.yml
File metadata and controls
37 lines (35 loc) · 1.03 KB
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
name: 'Build Provided'
on:
push:
branches:
- main
jobs:
build:
name: 'Build'
runs-on: ubuntu-22.04-arm
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Build'
uses: explore-flights/libduckdb/.github/actions/build_go_provided@main
with:
go_arch: 'arm64'
go_build_output_file: 'example'
go_version: '1.26.1'
image_arch: 'aarch64'
platform: 'linux/arm64'
release: 'v1.5.0-v1+parquet.json.icu.httpfs.aws'
file: 'libduckdb_bundle-arm64-linux.a'
- name: 'Run App'
run: ./example >> extensions.txt
- name: 'Write Summary'
run: |
echo "### extensions.txt" >> $GITHUB_STEP_SUMMARY
echo "```txt" >> $GITHUB_STEP_SUMMARY
cat extensions.txt >> $GITHUB_STEP_SUMMARY
echo "```" >> $GITHUB_STEP_SUMMARY
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: 'extensions.txt'
path: 'extensions.txt'