Update: libspm to cf9d28066358f1ddeaa203a4b1ad3551dac85e26 #41
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: Check ECMP files | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install libcurl | |
run: sudo apt-get install libcurl4-gnutls-dev -y | |
- name: configure libspm | |
run: | | |
git clone https://github.com/Soviet-Linux/libspm --recurse-submodules | |
make -C libspm all | |
make -C libspm test | |
sudo make -C libspm install | |
- name: Try .ecmp files | |
run: | | |
find -name "*.ecmp" -exec sh -c './libspm/bin/package-test {}' \; |