mkosi: drop most systemd/build-packages deps and use obs_scm directory as source if present #1536
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: CI | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Update packages repository | |
run: | | |
sudo apt-get update | |
- name: Install libyaml-libyaml-perl | |
run: | | |
sudo apt-get install libyaml-libyaml-perl | |
- name: Install debdiff for debtransform test | |
run: | | |
sudo apt-get install devscripts | |
- name: Test | |
run: | | |
make test test-debtransform |