forked from hrydgard/ppsspp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Testing Bug | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
|
||
buildConfiguration: | ||
type: choice | ||
description: 'Build Configuration' | ||
required: true | ||
default: 'Release' | ||
options: | ||
- Release | ||
- Debug | ||
|
||
buildPlatform: | ||
type: choice | ||
description: 'Build Platform' | ||
required: true | ||
default: 'x64' | ||
options: | ||
- x64 | ||
- ARM64 | ||
- ARM | ||
|
||
jobs: | ||
|
||
build-uwp: | ||
name: Generate ${{ github.event.inputs.buildConfiguration }} UWP | ||
runs-on: windows-latest | ||
|
||
steps: | ||
#- uses: actions/checkout@v3 | ||
# with: | ||
# fetch-depth: 0 | ||
# submodules: recursive | ||
|
||
- name: Add MSBuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
- name: Testing values | ||
run: | | ||
# Testing values ... | ||
env | ||
echo "Content of [env.GITHUB_WORKSPACE] = ${env.GITHUB_WORKSPACE}" | ||
echo "Content of [[env.GITHUB_WORKSPACE]] = ${{env.GITHUB_WORKSPACE}}" | ||
echo "Content of [env:GITHUB_WORKSPACE] = ${env:GITHUB_WORKSPACE}" | ||
# echo "Content of [[env:GITHUB_WORKSPACE]] = ${{env:GITHUB_WORKSPACE}}" # This line (commented or not) will make this YML file to be invalid and showing an error at the wrong line (a bug in the YAML parser may be?) | ||
echo "Content of [github.workspace] = ${github.workspace}" | ||
echo "Content of [[github.workspace]] = ${{github.workspace}}" | ||
echo "one ${ github.event.inputs.buildPlatform }" | ||
echo ${{github.workspace}} | ||
echo "two ${{ github.event.inputs.buildPlatform }}" | ||
echo $env:GITHUB_WORKSPACE |