-
Notifications
You must be signed in to change notification settings - Fork 2
186 lines (179 loc) · 6.1 KB
/
ci.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ published ]
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: taiki-e/install-action@v2
with: { 'tool': 'just' }
- uses: actions/checkout@v4
- name: Ensure this crate has not yet been published (on release)
if: github.event_name == 'release'
run: just check-if-published
- uses: Swatinem/rust-cache@v2
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
- run: just ci-test
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
msrv:
name: Test MSRV
runs-on: ubuntu-latest
steps:
- uses: taiki-e/install-action@v2
with: { tool: just }
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
- name: Read crate metadata
id: metadata
run: echo "rust-version=$(sed -ne 's/rust-version *= *\"\(.*\)\"/\1/p' Cargo.toml)" >> $GITHUB_OUTPUT
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ steps.metadata.outputs.rust-version }}
components: rustfmt
- run: just ci-test-msrv
build:
name: Build ${{ matrix.target }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: aarch64-apple-darwin
file: libsqlite_hashes.dylib
download: 'https://www.sqlite.org/2023/sqlite-tools-osx-x64-3440200.zip'
os: macOS-latest
sqlite3: ./sqlite3
- target: x86_64-apple-darwin
file: libsqlite_hashes.dylib
download: 'https://www.sqlite.org/2023/sqlite-tools-osx-x64-3440200.zip'
os: macOS-latest
sqlite3: ./sqlite3
- target: x86_64-pc-windows-msvc
file: sqlite_hashes.dll
download: 'https://www.sqlite.org/2023/sqlite-tools-win-x64-3440200.zip'
os: windows-latest
sqlite3: ./sqlite3.exe
- target: x86_64-unknown-linux-gnu
file: libsqlite_hashes.so
os: ubuntu-latest
sqlite3: sqlite3
steps:
- uses: taiki-e/install-action@v2
with: { tool: just }
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
- name: Download SQLite
if: matrix.download
uses: carlosperate/download-file-action@v2
with:
file-url: '${{ matrix.download }}'
file-name: sqlite.zip
location: ./tmp-downloads
- name: Install SQLite
if: matrix.download
run: |
cd tmp-downloads
if [[ "${{ runner.os }}" == "Windows" ]]; then
7z x sqlite.zip
else
unzip sqlite.zip
chmod +x ${{ matrix.sqlite3 }}
fi
mv ${{ matrix.sqlite3 }} ../
cd ..
rm -rf ./tmp-downloads
- name: SQLite Info
run: |
which ${{ matrix.sqlite3 }}
${{ matrix.sqlite3 }} --version
${{ matrix.sqlite3 }} <<EOF
.help
EOF
- name: Build
if: matrix.cross != 'true'
run: |
set -x
rustup target add "${{ matrix.target }}"
export RUSTFLAGS='-C strip=debuginfo'
just build-ext --release --target ${{ matrix.target }}
mkdir -p target/files
- name: Test ${{ matrix.target }} extension
if: matrix.target != 'aarch64-apple-darwin'
env:
EXTENSION_FILE: target/${{ matrix.target }}/release/examples/${{ matrix.file }}
SQLITE3_BIN: ${{ matrix.sqlite3 }}
run: ./tests/test-ext.sh
# - name: Test ${{ matrix.target }} extension
# if: matrix.target != 'aarch64-apple-darwin'
# run: just sqlite3=${{ matrix.sqlite3 }} extension_file=target/${{ matrix.target }}/release/examples/${{ matrix.file }} test-ext
- name: Package
run: |
pushd target/${{ matrix.target }}/release/examples
if [[ "${{ runner.os }}" == "Windows" ]]; then
7z a ../../../files/sqlite-hashes-${{ matrix.target }}.zip ${{ matrix.file }}
else
tar czvf ../../../files/sqlite-hashes-${{ matrix.target }}.tar.gz ${{ matrix.file }}
fi
popd
ls -lR target/files
- name: Publish
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: 'target/files/*'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
cross-build:
name: Cross-build
runs-on: ubuntu-latest
steps:
- uses: taiki-e/install-action@v2
with:
tool: just,cross
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
- run: just cross-build-ext-aarch64
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/arm64
- run: just cross-test-ext-aarch64
- name: Package
run: |
mkdir -p target/files
tar czvf target/files/sqlite-hashes-aarch64-unknown-linux-gnu.tar.gz -C ./target/aarch64-unknown-linux-gnu/release/examples libsqlite_hashes.so
- run: ls -lR target/files
- name: Publish
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
draft: true
files: 'target/files/*'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
name: Publish to crates.io
if: startsWith(github.ref, 'refs/tags/')
needs: [ test, msrv, build, cross-build ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Publish to crates.io
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}