Skip to content

Commit 2238378

Browse files
committed
Merge stuff
1 parent de3a8bc commit 2238378

File tree

3 files changed

+49
-65
lines changed

3 files changed

+49
-65
lines changed

.github/workflows/macos.yml

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ on:
77
branches: [ master, python-3.7-to-3.10 ]
88

99
jobs:
10-
build-master:
11-
if: github.ref == 'refs/heads/master'
12-
runs-on: macos-latest
13-
steps:
14-
- uses: actions/checkout@v4
15-
with:
16-
ref: master
17-
- name: Set up Python 3.13
18-
uses: actions/setup-python@v5
19-
with:
20-
python-version: 3.13
21-
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
# Until the next xdis release
25-
pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
26-
pip install -e .
27-
pip install -r requirements-dev.txt
28-
- name: Test decompyle3
29-
run: |
30-
make check
10+
# build-master:
11+
# if: github.ref == 'refs/heads/master'
12+
# runs-on: macos-latest
13+
# steps:
14+
# - uses: actions/checkout@v4
15+
# with:
16+
# ref: master
17+
# - name: Set up Python 3.13
18+
# uses: actions/setup-python@v5
19+
# with:
20+
# python-version: 3.13
21+
# - name: Install dependencies
22+
# run: |
23+
# python -m pip install --upgrade pip
24+
# # Until the next xdis release
25+
# pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
26+
# pip install -e .
27+
# pip install -r requirements-dev.txt
28+
# - name: Test decompyle3
29+
# run: |
30+
# make check
3131

3232
build-37-to-310:
3333
if: github.ref == 'refs/heads/python-3.7-to-3.10'
@@ -43,6 +43,8 @@ jobs:
4343
- name: Install dependencies
4444
run: |
4545
python -m pip install --upgrade pip
46+
# Until the next xdis release
47+
pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
4648
pip install -e .
4749
pip install -r requirements-dev.txt
4850
- name: Test decompyle3

.github/workflows/ubuntu.yml

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ on:
77
branches: [ master, python-3.7-to-3.10 ]
88

99
jobs:
10-
build-master:
11-
if: github.ref == 'refs/heads/master'
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v4
15-
with:
16-
ref: master
17-
- name: Set up Python 3.10
18-
uses: actions/setup-python@v5
19-
with:
20-
python-version: 3.10
21-
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
# Until the next xdis release
25-
pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
26-
pip install -e .
27-
pip install -r requirements-dev.txt
28-
- name: Test decompyle3
29-
run: |
30-
make check
10+
# build-master:
11+
# if: github.ref == 'refs/heads/master'
12+
# runs-on: ubuntu-latest
13+
# steps:
14+
# - uses: actions/checkout@v4
15+
# with:
16+
# ref: master
17+
# - name: Set up Python 3.10
18+
# uses: actions/setup-python@v5
19+
# with:
20+
# python-version: 3.10
21+
# - name: Install dependencies
22+
# run: |
23+
# python -m pip install --upgrade pip
24+
# # Until the next xdis release
25+
# pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
26+
# pip install -e .
27+
# pip install -r requirements-dev.txt
28+
# - name: Test decompyle3
29+
# run: |
30+
# make check
3131

3232
build-37-to-310:
3333
if: github.ref == 'refs/heads/python-3.7-to-3.10'
@@ -43,6 +43,8 @@ jobs:
4343
- name: Install dependencies
4444
run: |
4545
python -m pip install --upgrade pip
46+
# Until the next xdis release
47+
pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
4648
pip install -e .
4749
pip install -r requirements-dev.txt
4850
- name: Test decompyle3

.github/workflows/windows.yml

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,42 +7,22 @@ on:
77
branches: [ master, python-3.7-to-3.10 ]
88

99
jobs:
10-
build-master:
11-
if: github.ref == 'refs/heads/master'
12-
runs-on: windows-latest
13-
steps:
14-
- uses: actions/checkout@v4
15-
with:
16-
ref: master
17-
- name: Set up Python 3.10
18-
uses: actions/setup-python@v5
19-
with:
20-
python-version: 3.10
21-
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
# Until the next xdis release
25-
pip install git+https://github.com/rocky/[email protected]#egg=xdis
26-
pip install -e .
27-
pip install -r requirements-dev.txt
28-
- name: Test decompyle3
29-
run: |
30-
make check
31-
3210
build-37-to-310:
3311
if: github.ref == 'refs/heads/python-3.7-to-3.10'
3412
runs-on: windows-latest
3513
steps:
3614
- uses: actions/checkout@v4
3715
with:
3816
ref: python-3.7-to-3.10
39-
- name: Set up Python 3.8
17+
- name: Set up Python 3.10
4018
uses: actions/setup-python@v5
4119
with:
4220
python-version: 3.8
4321
- name: Install dependencies
4422
run: |
4523
python -m pip install --upgrade pip
24+
# Until the next xdis release
25+
pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
4626
pip install -e .
4727
pip install -r requirements-dev.txt
4828
- name: Test decompyle3

0 commit comments

Comments
 (0)