We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c7bb03 commit b864089Copy full SHA for b864089
.github/actions/easy_compile/action.yml
@@ -45,8 +45,7 @@ runs:
45
with:
46
name: "stage-${{ runner.os }}-${{ runner.arch }}"
47
path: |
48
- ${{ inputs.working-directory }}/tmp/**/*.so
49
- ${{ inputs.working-directory }}/tmp/**/*.bundle
+ ${{ inputs.working-directory }}/tmp/**/*
50
${{ inputs.working-directory }}/pkg/*.gem
51
if-no-files-found: error
52
retention-days: 1
lib/easy_compile/compilation_tasks.rb
@@ -104,6 +104,7 @@ def disable_shared
104
105
makefile_tasks.each do |task|
106
task.enhance do
107
+ puts "#{task.name} is being enhanced"
108
makefile_content = File.read(task.name)
109
makefile_content.sub!(/(LIBRUBYARG_SHARED = )(?:-l\$\(RUBY_SO_NAME\))(.*)/, '\1\2')
110
0 commit comments