Build #1440
This file contains 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: 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 |