-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (40 loc) · 1.25 KB
/
test_other_repo_c.yml.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
name: Test other repo (C)
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
jobs:
test_other_repo_c_detect:
name: Test other repo detect (C)
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get extra dependencies
uses: actions/checkout@v4
with:
repository: ${{ secrets.SECRETREPO }}
token: ${{ secrets.SECRETTOKEN }}
path: deps_repo
- name: Build
run: make -C bindings/c BUILD_MODE=release
- name: Test detection
run: bindings/c/tests/test_detect_other_repo.sh
test_other_repo_c_checksum_autodetect:
name: Test other repo checksum_autodetect (C)
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get extra dependencies
uses: actions/checkout@v4
with:
repository: ${{ secrets.SECRETREPO }}
token: ${{ secrets.SECRETTOKEN }}
path: deps_repo
- name: Build
run: make -C bindings/c BUILD_MODE=release
- name: Test checksum with autodetection
run: bindings/c/tests/test_checksum_autodetect_other_repo.sh