aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci_github.yml
blob: 88c34184d8c7e5c71a4d23d1dde54ff1e8335278 (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
name: CI (GitHub)

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:
        os: [ubuntu-latest, windows-latest]
        toolset: [gcc, clang, msvc]
        configuration: [Debug, Release]
        exclude:
          - {os: ubuntu-latest, toolset: msvc}
          - {os: windows-latest, toolset: gcc}
          - {os: windows-latest, toolset: clang}
    runs-on: '${{ matrix.os }}'
    name: '${{ matrix.os }} / ${{ matrix.toolset }} / ${{ matrix.configuration }}'
    defaults:
      run:
        shell: pwsh
    env:
      TOOLSET: '${{ matrix.toolset }}'
      PLATFORM: x64
      CONFIGURATION: '${{ matrix.configuration }}'
      BOOST_VERSION: 1.81.0
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Set up Python
        uses: actions/setup-python@v4
        with:
          python-version: '3.x'
      - name: Cache Boost
        uses: actions/cache@v3
        with:
          path: '${{ runner.workspace }}/build/boost_*.tar.gz'
          key: 'boost_${{ env.BOOST_VERSION }}'
      - name: Build Boost
        run: python -m project.ci.boost -- --with-filesystem
      - name: Build example project
        run: python -m project.ci.cmake --install --subdir examples/boost
      - name: Run example project
        run: ./.ci/run_foo.ps1 (Join-Path $env:GITHUB_WORKSPACE .. build install bin foo)