aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci_appveyor.yml
blob: 3a53e2cc1b015964a8a54eb7cd8607ee3bf4472b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# This workflow pretends like it's being run on AppVeyor by setting the
# appropriate environment variables.

name: CI (AppVeyor)

on:
  push:
  pull_request:
  schedule:
    # Weekly, at 5:30 AM on Saturday (somewhat randomly chosen).
    - cron: '30 5 * * 6'
  workflow_dispatch:

jobs:
  build:
    strategy:
      matrix:
        platform: [Win32, x64]
        configuration: [Debug, Release]

    runs-on: windows-2019

    name: '${{ matrix.platform }} / ${{ matrix.configuration }}'

    env:
      # https://www.appveyor.com/docs/environment-variables/
      APPVEYOR: 'True'
      APPVEYOR_BUILD_FOLDER: '${{ github.workspace }}\examples\boost'
      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
      PLATFORM: '${{ matrix.platform }}'
      CONFIGURATION: '${{ matrix.configuration }}'
      BOOST_VERSION: 1.72.0

    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: '${{ github.workspace }}/examples/build/boost_*.tar.gz'
          key: 'boost_${{ env.BOOST_VERSION }}'

      - name: Build Boost
        run: python -m project.ci.boost --hint AppVeyor -- --with-filesystem

      - name: Build example project
        run: python -m project.ci.cmake --hint AppVeyor --install

      - name: Run example project
        run: |
          cd "$env:APPVEYOR_BUILD_FOLDER/../build/install/bin"
          $foo_path = Join-Path (Get-Location).Path foo.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'
          }