Skip to content

Add support for specifying a file path via -f/--file when loading buildspec into cache #2610

Add support for specifying a file path via -f/--file when loading buildspec into cache

Add support for specifying a file path via -f/--file when loading buildspec into cache #2610

Workflow file for this run

name: installation
on:
pull_request:
branches: [devel]
jobs:
buildtest-installation:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, macos-13, ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: "Install zsh and tcsh"
run: |
if [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
sudo apt-get install -y tcsh zsh
else
brew install tcsh zsh
fi
- name: Buildtest Installation for os - ${{ matrix.os }}, python version - ${{ matrix.python-version }}, shell - bash
shell: bash
run: |
echo $SHELL
pip install -U pip
source setup.sh
which buildtest
buildtest --help
- name: Buildtest Installation for os - ${{ matrix.os }}, python version - ${{ matrix.python-version }}, shell - zsh
shell: zsh {0}
run: |
echo $SHELL
pip install -U pip
source setup.sh
which buildtest
buildtest --help
- name: Buildtest Installation for os - ${{ matrix.os }}, python version - ${{ matrix.python-version }}, shell - csh
shell: csh {0}
run: |
echo $shell
pip install -U pip
source setup.csh
which buildtest
buildtest --help