action-debian-package/.github/workflows/test.yml
dependabot[bot] 397d862fa2
build(deps): bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-02 04:15:57 +00:00

58 lines
1.7 KiB
YAML

name: Test Action
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- package: at
arch: arm
repo: https://salsa.debian.org/debian/at.git
ref: debian/3.1.23-1
- package: lolcat
arch: arm64
repo: https://salsa.debian.org/ruby-team/lolcat.git
ref: debian/100.0.1-2
- package: micro
arch: amd64
repo: https://salsa.debian.org/go-team/packages/micro.git
ref: debian/2.0.6-2_bpo10+1
- package: dropbear
arch: amd64
repo: https://salsa.debian.org/debian/dropbear.git
ref: debian/2016.74-5+deb9u1
- package: deber
arch: arm64
repo: https://github.com/dawidd6/deber.git
ref: v1.0.0
- package: netcat-openbsd
arch: arm64
repo: https://git.launchpad.net/ubuntu/+source/netcat-openbsd
ref: import/1.206-1ubuntu1
- package: iproute2
arch: arm
repo: https://git.launchpad.net/ubuntu/+source/iproute2
ref: import/4.18.0-1ubuntu2_ubuntu18.04.1
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Clone repo
run: git clone --depth=1 ${{matrix.repo}} -b ${{matrix.ref}} ${{matrix.package}}
- name: Test run
uses: ./
with:
cpu_architecture: ${{matrix.arch}}
source_directory: ${{matrix.package}}
artifacts_directory: artifacts
- name: Check files
run: |
ls -lh artifacts/${{matrix.package}}*.*
ls -lh ${{matrix.package}}*.* && false || true