Skip to content

Commit

Permalink
github: Downgrade CI runner to ubuntu 20.04 to support WSL & old distro
Browse files Browse the repository at this point in the history
  • Loading branch information
d3m3vilurr committed Jun 16, 2023
1 parent b92cdcb commit a7c8621
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build-linux:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
Expand Down Expand Up @@ -85,7 +85,10 @@ jobs:
tag: master-osx-v2.${{github.run_number}}
release_name: master-osx-v2.${{github.run_number}}
build-windows:
runs-on: ubuntu-latest
# TODO match as build-linux
# we don't know reason yet, mingw build was failed when libelf compille.
# mingw output have to be static linking, and that this reason, we are able to use 22.04 in here
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
Expand Down Expand Up @@ -124,4 +127,4 @@ jobs:
overwrite: true
file_glob: true
tag: master-win-v2.${{github.run_number}}
release_name: master-win-v2.${{github.run_number}}
release_name: master-win-v2.${{github.run_number}}

0 comments on commit a7c8621

Please sign in to comment.