mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-17 14:47:30 -05:00
* add mac workflow * rename and add windows and ubuntu workflows * update tests * update tests * update travis
24 lines
518 B
YAML
24 lines
518 B
YAML
name: Ubuntu
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: install updates
|
|
run: |
|
|
wget -O cmake.sh https://cmake.org/files/v3.14/cmake-3.14.0-Linux-x86_64.sh
|
|
sudo sh cmake.sh --skip-license --exclude-subdir --prefix=/usr/local
|
|
export PATH=/usr/local/bin:$PATH
|
|
cmake --version
|
|
|
|
- name: run tests
|
|
run: |
|
|
cmake -Htest -Bbuild/test
|
|
cmake --build build/test --target test-verbose
|