Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Last active February 24, 2020 17:06
Show Gist options
  • Select an option

  • Save FeodorFitsner/ff5c34a72a42d492b900b05917c091e2 to your computer and use it in GitHub Desktop.

Select an option

Save FeodorFitsner/ff5c34a72a42d492b900b05917c091e2 to your computer and use it in GitHub Desktop.

Revisions

  1. FeodorFitsner revised this gist Oct 17, 2019. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion linux-windows-appveyor.yml
    Original file line number Diff line number Diff line change
    @@ -21,7 +21,6 @@ for:
    build_script:
    - sh: echo "Building on Linux..."
    - sh: sleep 5
    - ps: Write-Host "Building on Linux from PS..."
    test: off

    -
  2. FeodorFitsner revised this gist Oct 17, 2019. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions linux-windows-appveyor.yml
    Original file line number Diff line number Diff line change
    @@ -3,10 +3,12 @@ environment:

    # Linux job
    - job_name: Linux build
    appveyor_build_worker_image: ubuntu

    # Windows job
    - job_name: Windows build
    job_depends_on: Linux build
    appveyor_build_worker_image: Visual Studio 2017

    matrix:
    fast_finish: true
    @@ -16,7 +18,6 @@ for:
    matrix:
    only:
    - job_name: Linux build
    image: ubuntu
    build_script:
    - sh: echo "Building on Linux..."
    - sh: sleep 5
    @@ -27,7 +28,6 @@ for:
    matrix:
    only:
    - job_name: Windows build
    image: Visual Studio 2017
    build_script:
    - ps: Write-Host "Building on Windows..."
    - ps: Start-Sleep 5
  3. FeodorFitsner revised this gist Oct 17, 2019. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions linux-windows-appveyor.yml
    Original file line number Diff line number Diff line change
    @@ -20,6 +20,7 @@ for:
    build_script:
    - sh: echo "Building on Linux..."
    - sh: sleep 5
    - ps: Write-Host "Building on Linux from PS..."
    test: off

    -
  4. FeodorFitsner created this gist Oct 17, 2019.
    34 changes: 34 additions & 0 deletions linux-windows-appveyor.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,34 @@
    environment:
    matrix:

    # Linux job
    - job_name: Linux build

    # Windows job
    - job_name: Windows build
    job_depends_on: Linux build

    matrix:
    fast_finish: true

    for:
    -
    matrix:
    only:
    - job_name: Linux build
    image: ubuntu
    build_script:
    - sh: echo "Building on Linux..."
    - sh: sleep 5
    test: off

    -
    matrix:
    only:
    - job_name: Windows build
    image: Visual Studio 2017
    build_script:
    - ps: Write-Host "Building on Windows..."
    - ps: Start-Sleep 5
    - ps: Write-Host "Deploying"
    test: off