Files
asdf-php/.github/workflows/workflow.yml
Sora Morimoto ba85be6aa3 Add libgd-dev as a dependency on Ubuntu
Signed-off-by: Sora Morimoto <sora@morimoto.io>
2020-11-25 04:20:02 +09:00

62 lines
2.0 KiB
YAML

name: Main workflow
on:
pull_request:
push:
schedule:
- cron: 0 0 * * 5
jobs:
plugin-test-docker:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
env:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Install packages
run: apt-get update && apt-get install autoconf bison build-essential curl gettext git libgd-dev libcurl4-openssl-dev libedit-dev libicu-dev libjpeg-dev libmysqlclient-dev libonig-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libxml2-dev libzip-dev openssl pkg-config re2c zlib1g-dev -y
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v1
with:
command: php --version
version: 8.0.0
plugin-test-macos:
runs-on: macos-latest
steps:
- name: Install packages
run: brew install autoconf automake bison freetype gd gettext icu4c krb5 libedit libiconv libjpeg libpng libxml2 libzip pkg-config re2c zlib
# export PKG_CONFIG_PATH="$(brew --prefix icu4c)/lib/pkgconfig:$(brew --prefix krb5)/lib/pkgconfig:$(brew --prefix libedit)/lib/pkgconfig:$(brew --prefix libxml2)/lib/pkgconfig:$(brew --prefix openssl)/lib/pkgconfig"
- name: Add PKG_CONFIG_PATH environment variable
run: echo "PKG_CONFIG_PATH=$(brew --prefix icu4c)/lib/pkgconfig:$(brew --prefix krb5)/lib/pkgconfig:$(brew --prefix libedit)/lib/pkgconfig:$(brew --prefix libxml2)/lib/pkgconfig:$(brew --prefix openssl)/lib/pkgconfig" >>"$GITHUB_ENV"
# export PATH="$(brew --prefix bison)/bin:$PATH"
- name: Add bison path
run: echo "$(brew --prefix bison)/bin" >>"$GITHUB_PATH"
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v1
with:
command: php --version
version: 8.0.0
format:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install shfmt
run: brew install shfmt
- name: Run shfmt
run: shfmt -d -i 2 -ci .