File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1111 env :
1212 PLATFORM : x86_64-linux
1313 TAGLIB_VERSION : 1.11.1
14+ SKIP_SWIG : true
1415 steps :
1516 - uses : actions/checkout@v2
1617 - uses : actions/setup-ruby@v1
Original file line number Diff line number Diff line change @@ -33,6 +33,6 @@ import 'tasks/gemspec_check.rake'
3333# by Swig. Since the ExtensionTasks depend on the *_wrap.cxx files,
3434# compiling the extensions will trigger Swig, which is not desired as
3535# those files have already been generated and there's no reason to make
36- # Swig a variable of the CI. To prevent those dependencies, do not import
37- # swig.rake when running in Travis .
38- import 'tasks/swig.rake' unless ENV [ 'TRAVIS ' ] == 'true'
36+ # Swig a variable of the CI. The environment variable can be set to
37+ # prevent running swig .
38+ import 'tasks/swig.rake' unless ENV [ 'SKIP_SWIG ' ] == 'true'
You can’t perform that action at this time.
0 commit comments