diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-18 02:06:38 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-18 02:06:38 +0300 |
commit | f57a57d23ac30f2a424ab06e387f566a00698eea (patch) | |
tree | 6270dd8cd1d8687e6c58403fdff580ed3216d992 /.github/workflows/ci_appveyor.yml | |
parent | workflows: add "Basic usage" (diff) | |
download | cmake-common-f57a57d23ac30f2a424ab06e387f566a00698eea.tar.gz cmake-common-f57a57d23ac30f2a424ab06e387f566a00698eea.zip |
workflows: add Travis/AppVeyor simulations
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci_appveyor.yml | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/.github/workflows/ci_appveyor.yml b/.github/workflows/ci_appveyor.yml new file mode 100644 index 0000000..3033607 --- /dev/null +++ b/.github/workflows/ci_appveyor.yml @@ -0,0 +1,79 @@ +# This workflow pretends like it's being run on AppVeyor by setting the +# appropriate environment variables. The project.ci.appveyor package is +# tested. + +name: CI (AppVeyor) + +on: + push: + branches-ignore: + - travis + - appveyor + 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: Create C:\projects + run: mkdir C:\projects + + - name: Build Boost + run: | + python -m project.ci.appveyor.boost -- --with-filesystem + + - name: Build example project + run: | + python -m project.ci.appveyor.cmake --install ..\install + + - name: Run example project + run: | + $foo_path = Join-Path (Split-Path (Get-Location).Path) install bin 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' + } |