Skip to content

Commit fd1651f

Browse files
committed
workflows: Init build
1 parent d138fb8 commit fd1651f

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/build_pkg.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Build d-SEAMS"
2+
on: [push, pull_request]
3+
jobs:
4+
build_pkg:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/[email protected]
8+
- uses: cachix/install-nix-action@v12
9+
with:
10+
nix_path: nixpkgs=channel:nixos-unstable
11+
- uses: cachix/cachix-action@v8
12+
with:
13+
name: dseams
14+
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
15+
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
16+
- run: nix-env -if .
17+
- run: yodaStruct -c lua_inputs/config.yml
18+
- run: nix-shell --run "echo OK"

scripts/builder.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ if [[ "$PWD" =~ seams-core ]]; then
1313
cp yodaStruct ../
1414
cp libyodaLib.so ../
1515
cd ../
16-
gdb --args yodaStruct -c lua_inputs/config.yml
16+
# gdb --args yodaStruct -c lua_inputs/config.yml
17+
yodaStruct -c lua_inputs/config.yml
1718
fi

0 commit comments

Comments
 (0)