Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotnet/emsdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7b2cd1e
Choose a base ref
...
head repository: dotnet/emsdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2160932
Choose a head ref
  • 6 commits
  • 19 files changed
  • 6 contributors

Commits on Jul 25, 2022

  1. Update dependencies from https://github.com/dotnet/arcade build 20220…

    …722.1
    
    Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.Helix.Sdk
     From Version 7.0.0-beta.22367.1 -> To Version 7.0.0-beta.22372.1
    dotnet-maestro[bot] committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    618efd6 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Merge pull request #159 from dotnet/darc-main-97eb5104-090d-4bae-9ab0…

    …-8c47435f1245
    
    [main] Update dependencies from dotnet/arcade
    lewing authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    900bf4d View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2022

  1. Update dependencies from https://github.com/dotnet/arcade build 20220…

    …729.10 (#162)
    
    [main] Update dependencies from dotnet/arcade
    dotnet-maestro[bot] authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    f4210fc View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2022

  1. Add support for in-build signing (#164)

    * Add support for in-build signing
    - Add an explicit flag for post-build signing
    - In-build signing is only supported on Windows. This repo creates some packages on Mac and Linux, and at the moment they can only be created on those platforms. When post build signing isn't enabled, download the artifacts for those platforms and run the sign and publish phases of the build.
    - Update the cert for the MSIs to be the .NET Cert
    - Move the PostBuildSIgn flag into the YAML so it can be used in template expressions
    - Pass -sign (harmless if post-build sign is on) in all ci cases.
    - Always publish even on PRs, there's no harm in it.
    
    * Enable Microbuild
    
    * Up timeout and fix configuration
    mmitche authored Aug 5, 2022
    Configuration menu
    Copy the full SHA
    b36ce43 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2022

  1. Update dependencies from https://github.com/dotnet/arcade build 20220…

    …805.6 (#165)
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    dotnet-maestro[bot] and dotnet-maestro[bot] authored Aug 8, 2022
    Configuration menu
    Copy the full SHA
    3edd98c View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2022

  1. Fix publishing for non-windows platforms (#167)

    In the PR #164 a new variable was added conditionally:
    
    ```yml
       # If post build signing, then OSX and Linux don't publish during their main pass. Otherwise, always publish
       - ${{ if eq(variables['PostBuildSign'], 'true') }}:
         - name: _NonWindowsInternalPublishArg
           value: -publish
    ```
    
    .. but this resulted in the variable not getting defined at all in the final yaml.
    We need to move the if to the variable _value_ instead.
    
    Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
    radical and akoeplinger authored Aug 11, 2022
    Configuration menu
    Copy the full SHA
    2160932 View commit details
    Browse the repository at this point in the history
Loading