"pymarian" CLI, a proxy to "marian" #697
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: MacOS | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
jobs: | ||
build-macos: | ||
strategy: | ||
matrix: | ||
include: | ||
- name: "Pymarian=YES" | ||
pymarian: true | ||
- name: "Pymarian=NO" | ||
pymarian: false | ||
name: "MacOS CPU-only ${{ atrix.name }}" | ||
Check failure on line 18 in .github/workflows/macos.yml GitHub Actions / MacOSInvalid workflow file
|
||
runs-on: macos-12 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Install dependencies | ||
run: brew install boost openblas openssl protobuf | ||
- name: Configure CMake | ||
run: | | ||
export LDFLAGS="-L/usr/local/opt/openblas/lib" | ||
export CPPFLAGS="-I/usr/local/opt/openblas/include" | ||
mkdir -p build | ||
cd build | ||
cmake .. \ | ||
-DCOMPILE_CPU=on \ | ||
-DCOMPILE_CUDA=off \ | ||
-DCOMPILE_EXAMPLES=on \ | ||
-DCOMPILE_SERVER=off \ | ||
-DCOMPILE_TESTS=on \ | ||
-DUSE_FBGEMM=on \ | ||
-DUSE_SENTENCEPIECE=on \ | ||
-DPYMARIAN=${{matrix.pymarian}} | ||
- name: Compile | ||
working-directory: build | ||
run: make -j2 | ||
- name: Run unit tests | ||
working-directory: build | ||
run: make test | ||
- name: Print versions | ||
working-directory: build | ||
run: | | ||
./marian --version | ||
./marian-decoder --version | ||
./marian-scorer --version | ||
ls -hlv $(find . -maxdepth 1 -type f -perm +ugo+x \( -name "marian*" -o -name "spm*" \)) | ||
- name: Install PyMarian | ||
working-directory: build | ||
if: matrix.pymarian == true | ||
run: | | ||
echo "Wheels built: " && ls -lh pymarian*.whl | ||
python3 -m pip install --upgrade pip setuptools wheel pytest | ||
python3 -m pip install -v pymarian*.whl | ||
python3 -m pymarian -v | ||
pymarian-eval --version | ||
pymarian --version |