Update endpoint-build-test.yml #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Endpoint build test | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- endpoint/** | |
- shared/** | |
- .github/workflows/endpoint-build-test.yml | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install requirements | |
run: sudo apt install libx11 | |
- name: make | |
working-directory: ./endpoint | |
run: make | |
- name: make clean install | |
working-directory: ./endpoint | |
run: sudo make clean install | |
- name: make clean ndinstall | |
working-directory: ./endpoint | |
run: sudo make clean ndinstall | |
- name: make debug | |
working-directory: ./endpoint | |
run: make debug |