-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from Vipon/issue_40
Add print relocations for macho and PE format.
- Loading branch information
Showing
41 changed files
with
2,177 additions
and
474 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
inputs: | ||
shell: | ||
description: 'shell for running make' | ||
required: true | ||
path: | ||
description: 'add to PATH env variable' | ||
required: false | ||
cpath: | ||
description: 'assign CPATH env variable' | ||
required: false | ||
default: '${CPATH}' | ||
library_path: | ||
description: 'assign LIBRARY_PATH env variable' | ||
required: false | ||
default: '${LIBRARY_PATH}' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Setup Win Vars | ||
if: runner.os == 'Windows' | ||
run: | | ||
echo "${{ inputs.path }}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
echo "CPATH=${{ inputs.cpath }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | ||
echo "LIBRARY_PATH=${{ inputs.library_path }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | ||
shell: ${{ inputs.shell }} | ||
- name: Setup Unix Vars | ||
if: runner.os != 'Windows' | ||
run: | | ||
echo "${{ inputs.path }}" >> $GITHUB_PATH | ||
echo "CPATH=${{ inputs.cpath }}" >> $GITHUB_ENV | ||
echo "LIBRARY_PATH=${{ inputs.library_path }}" >> $GITHUB_ENV | ||
shell: ${{ inputs.shell }} | ||
|
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
Oops, something went wrong.