test-action-debian-package/.github/workflows/test.yml

50 lines
1.5 KiB
YAML
Raw Normal View History

2020-03-25 22:13:26 +00:00
name: Test Action
2020-07-25 10:37:11 +00:00
on:
push:
branches:
2020-11-08 20:12:55 +00:00
- master
pull_request:
2020-03-25 22:13:26 +00:00
jobs:
test:
runs-on: ubuntu-latest
2020-03-26 15:35:44 +00:00
strategy:
matrix:
include:
2020-07-25 10:32:39 +00:00
- package: at
repo: https://salsa.debian.org/debian/at.git
ref: debian/3.1.23-1
2020-03-26 15:35:44 +00:00
- package: lolcat
repo: https://salsa.debian.org/ruby-team/lolcat.git
ref: debian/100.0.1-2
- package: micro
repo: https://salsa.debian.org/go-team/packages/micro.git
ref: debian/2.0.6-2_bpo10+1
2021-04-27 05:58:01 +00:00
- package: grep
repo: https://salsa.debian.org/debian/grep.git
ref: debian/3.3-1_bpo9+1
2020-03-26 16:09:53 +00:00
- package: deber
repo: https://github.com/dawidd6/deber.git
ref: v1.0.0
2020-04-29 15:02:44 +00:00
- package: netcat-openbsd
repo: https://git.launchpad.net/ubuntu/+source/netcat-openbsd
ref: import/1.206-1ubuntu1
- package: iproute2
repo: https://git.launchpad.net/ubuntu/+source/iproute2
ref: import/4.18.0-1ubuntu2_ubuntu18.04.1
2020-03-25 22:13:26 +00:00
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Clone repo
2020-11-08 20:12:55 +00:00
run: git clone --depth=1 ${{matrix.repo}} -b ${{matrix.ref}} ${{matrix.package}}
2020-03-25 22:13:26 +00:00
- name: Test run
uses: ./
with:
2020-03-26 15:35:44 +00:00
source_directory: ${{matrix.package}}
artifacts_directory: artifacts
2020-03-26 12:26:07 +00:00
- name: Check files
run: |
2020-03-26 23:30:46 +00:00
ls -lh artifacts/${{matrix.package}}*.*
ls -lh ${{matrix.package}}*.* && false || true