test3 #4
Workflow file for this run
This file contains hidden or 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: macos | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install ncurses & libjansson | |
| run: | | |
| git submodule init | |
| git submodule update | |
| brew install ncurses jansson | |
| - name: cmake | |
| run: cmake -DCMAKE_PREFIX_PATH=$(brew --prefix ncurses) -DPKG_CONFIG_PATH=$(brew --prefix ncurses)/lib/pkgconfig -S . -B build | |
| - name: make | |
| run: make -C build kek | |
| - name: store artifact in GitHub | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: my-artifact | |
| path: build/ke | |
| retention-days: 2 |