Skip to content

Build

Build #1407

Workflow file for this run

name: Build
on:
pull_request:
paths-ignore:
- "**.md"
push:
paths-ignore:
- "**.md"
schedule:
- cron: "0 0 * * *" # daily at midnight
jobs:
plugin_test_ubuntu:
name: asdf plugin test (ubuntu)
runs-on: ubuntu-latest
steps:
- name: asdf_plugin_test_ubuntu
uses: asdf-vm/actions/plugin-test@v3
with:
command: postgres --version
plugin_test_macos:
name: asdf plugin test (macos)
runs-on: macos-latest
env:
POSTGRES_CONFIGURE_OPTIONS: "--without-icu"
steps:
- name: add uic bin to path
run: echo "/opt/homebrew/opt/icu4c/bin" >> $GITHUB_PATH
- name: install dependencies
run: brew install gcc readline zlib curl ossp-uuid icu4c pkg-config
- name: asdf_plugin_test_macos
uses: asdf-vm/actions/plugin-test@v3
with:
command: postgres --version