-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (46 loc) · 1.34 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
permissions:
# needed for action-gh-release
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Git describe
id: ghd
uses: proudust/gh-describe@v2
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo build --release
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Run integration tests
env:
SAND_TEST_TARGET: release
run: |
echo "Testing $(target/release/sand version)"
python -m pip install --upgrade pip
pip install pytest
pip install deepdiff
pytest test.py
# TODO, will need to cargo build --release
# - name: Create release archive
# env:
# GIT_DESCRIBE: ${{ steps.ghd.outputs.describe }}
# run: ./create_release_archive.sh
# if: startsWith(github.ref, 'refs/tags/v')
# - name: Release
# uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/v')
# with:
# files: release/sand-*-x86_64-linux.tar.zst