Allow default python3 to be installed #17
Workflow file for this run
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- "bin/*" | |
- ".github/workflows/*" | |
pull_request: | |
paths: | |
- "bin/*" | |
- ".github/workflows/*" | |
jobs: | |
plugin_test: | |
name: asdf plugin test | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-11 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install extras | |
if: ${{ matrix.os == 'macos-11'}} | |
run: | | |
brew install bzip2 lbzip2 lzlib openssl readline sqlite3 tcl-tk xz zlib | |
brew install asdf | |
asdf plugin add python | |
LDFLAGS="-L/usr/local/opt/bzip2/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib" CFLAGS="-I/usr/local/opt/bzip2/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -I$(xcrun --show-sdk-path)/usr/include -Wno-implicit-function-declaration" asdf install python 3.11.6 | |
- uses: asdf-vm/actions/plugin-test@v3 | |
with: | |
command: az version | |
env: | |
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} |