Skip to content

Commit

Permalink
try2fix gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed Jan 31, 2024
1 parent 8a9a86a commit 42121bd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
Test::Trap'
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
uses: e-t-l/setup-mingw@patch-1
with:
platform: x64
- name: install and test_script code
Expand Down
11 changes: 10 additions & 1 deletion CI-testing/translate-travis.yml-to-github-actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def _process_env(env):
steps.append(cpanm_step)
# if True: # plat == 'x86':
# if plat == 'x86':
if True:
if False:
mingw = {
"name": "Set up MinGW",
"uses": "egor-tensin/setup-mingw@v2",
Expand All @@ -183,6 +183,15 @@ def _process_env(env):
},
}
steps.append(mingw)
elif True:
mingw = {
"name": "Set up MinGW",
"uses": "e-t-l/setup-mingw@patch-1",
"with": {
"platform": plat,
},
}
steps.append(mingw)

# See:
#
Expand Down

0 comments on commit 42121bd

Please sign in to comment.