Skip to content

Commit 1831287

Browse files
committed
Test
1 parent f532d61 commit 1831287

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/build_native.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build Native
22

33
on:
44
push:
5-
branches: [ "feature/add_native_build" ]
5+
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
88
workflow_dispatch:
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Call Build Native
2+
3+
on:
4+
push:
5+
branches: [ "feature/add_native_build" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build-native:
12+
uses: atraplet/clarabel4j-native/.github/workflows/build_native.yml@feature/add_native_build
13+
14+
download:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Download libraries
18+
uses: actions/download-artifact@v4
19+
with:
20+
path: build
21+
merge-multiple: true
22+
- name: Check
23+
shell: bash
24+
run: |
25+
cd build
26+
ls -la

0 commit comments

Comments
 (0)