Skip to content

Test CI.

Test CI. #5

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
vcbuild64:
name: "Windows Release|x64"
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: |
python3 -m pip install build
cd xndlib
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ..\ndtypes
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ..\xnd
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ..\gumath
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
shell: cmd
vcbuild32:
name: "Windows Release|x86"
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: |
python3 -m pip install build
cd xndlib
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ..\ndtypes
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ..\xnd
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ..\gumath
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
osx_x64:
name: 'OSX x64'
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- run: |
brew install cmake
mkdir venv
python3 -m venv venv
venv/bin/python3 -m pip install build
cd xndlib
git clone https://github.com/xnd-project/xnd source/xnd
../venv/bin/python3 -m build .
cd ../ndtypes
git clone https://github.com/xnd-project/xnd source/xnd
../venv/bin/python3 -m build .
cd ../xnd
git clone https://github.com/xnd-project/xnd source/xnd
../venv/bin/python3 -m build .
cd ../gumath
git clone https://github.com/xnd-project/xnd source/xnd
../venv/bin/python3 -m build .
ubuntu_x64:
name: 'Ubuntu x64'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
python3 -m pip install build
cd xndlib
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ../ndtypes
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ../xnd
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
cd ../gumath
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .