Skip to content

Commit

Permalink
Update makefile.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ratmcu authored Jul 3, 2024
1 parent ea26cb0 commit dbc8a22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
- uses: actions/checkout@v4

- name: configure
run: mkdir build; cd build && cmake .. ; python -m pip install cffi
run: cmake .. ; python -m pip install cffi

- name: build
run: cd build && make ; du -a
run: make ; du -a

- name: build backend
run: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./build/sample:./build/extended; python main_builder.py; python extend_build.py

- name: Run distcheck
- name: Run Tests
run: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./build/sample:./build/extended; python test.py; python e_test.py

0 comments on commit dbc8a22

Please sign in to comment.