Skip to content

Commit

Permalink
Can we just not rename command line switches please. Thanks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Byass committed Jan 22, 2021
1 parent 9f50a7d commit 2ec726c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-core-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:
- name: Install dependencies
run: dotnet restore
- name: Build - Windows x64
run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true
run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- name: Upload Win x64 Artifact
uses: actions/upload-artifact@v2
with:
name: Cpp2IL-Win
path: ./Cpp2IL/bin/Release/net5.0/win-x64/publish/Cpp2IL.exe
- name: Build - Ubuntu x64
run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true
run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- name: Upload Ubuntu x64 Artifact
uses: actions/upload-artifact@v2
with:
name: Cpp2IL-Linux
path: ./Cpp2IL/bin/Release/net5.0/ubuntu-x64/publish/Cpp2IL
- name: Build - OSX x64
run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true
run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- name: Upload OSX x64 Artifact
uses: actions/upload-artifact@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
working-directory: ./LibCpp2IL/
- name: Build - Windows x64
working-directory: ./Cpp2IL/
run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true
run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- name: Build - Ubuntu x64
working-directory: ./Cpp2IL/
run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true
run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- name: Build - OSX x64
working-directory: ./Cpp2IL/
run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true
run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- name: Upload Common Lib Files
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 2ec726c

Please sign in to comment.