aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/basic.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/basic.yml')
-rw-r--r--.github/workflows/basic.yml31
1 files changed, 1 insertions, 30 deletions
diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml
index a5c4c6d..bfb6212 100644
--- a/.github/workflows/basic.yml
+++ b/.github/workflows/basic.yml
@@ -22,67 +22,38 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, windows-2016, windows-2019]
-
include:
# Prettier run names.
- {os: windows-2016, name: VS 2017}
- {os: windows-2019, name: VS 2019}
- {os: ubuntu-18.04, name: Ubuntu}
-
runs-on: '${{ matrix.os }}'
-
name: '${{ matrix.name }}'
-
defaults:
run:
shell: pwsh
-
steps:
- name: Checkout
uses: actions/checkout@v2
-
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
-
- name: Cache Boost
uses: actions/cache@v2
with:
path: boost_*.tar.gz
key: boost_1.72.0
-
- name: Build Boost
run: |
python -m project.boost.download --cache . 1.72.0
python -m project.boost.build -- boost_1_72_0 --with-filesystem
-
- name: Build example project
run: |
$src_dir = Join-Path examples boost
python -m project.cmake.build --boost boost_1_72_0 --install install -- $src_dir
-
- name: Run example project
- run: |
- $foo_path = Join-Path (Get-Location).Path install bin foo
- if ('${{ runner.os }}' -eq 'Windows') {
- $foo_path += '.exe'
- }
-
- $relative = 'test.txt'
- $absolute = Join-Path (Get-Location).Path $relative
-
- $actual = & $foo_path $relative
- echo 'Actual output:'
- echo $actual
-
- $expected = $foo_path,$absolute
- echo 'Expected output:'
- echo $expected
-
- if (Compare-Object $actual $expected -CaseSensitive) {
- throw 'Unexpected output'
- }
+ run: ./.ci/run_foo.ps1 (Join-Path (Get-Location).Path install bin foo)
publish:
# TODO: figure out how to add a dependency on the *toolsets workflows.