fix: arm64 docker release #48
Workflow file for this run
This file contains hidden or 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: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Setup faas-cli | |
run: | | |
curl -sSL https://cli.openfaas.com | sh | |
- name: Install cpanminus | |
run: | | |
sudo rm /var/lib/man-db/auto-update | |
sudo apt install cpanminus | |
- name: Install dependencies | |
run: | | |
sudo cpanm --notest --installdeps . | |
- name: Pull template | |
run: | | |
git clone https://github.com/tschaefer/openfaas-perl-mojo-template -b full-mojo _template | |
mv _template/template . | |
rm -rf _template | |
- name: Run tests | |
run: | | |
prove -v t | |
env: | |
MINIO_NOTIFY_PROVE_VERBOSE: ${{ vars.MINIO_NOTIFY_PROVE_VERBOSE }} |