Test whether pipeline can be installed through autotools #2
Workflow file for this run
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: Install METIS_Pipeline through autotools | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
# Run every day at 2:00 UTC | |
- cron: "0 2 * * *" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
run: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo ./toolbox/install_dependencies_ubuntu.sh | |
- name: Run autotools | |
run: | | |
cd metisp | |
./bootstrap | |
./configure | |
make | |
make python | |
make install | |
make install-python | |
- name: Check recipes | |
# TODO: Actually check something here. | |
run: | | |
esorex --recipes |