File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 34
34
#
35
35
dev-build-and-test-run :
36
36
name : Developer Build and Testing
37
- #
38
- # Unlike the debian package build job, we prefer
39
- # ubuntu-latest for developer builds as they are
40
- # more likely to upgrade first.
41
- #
42
- runs-on : ubuntu-latest
37
+ runs-on : ubuntu-18.04
43
38
strategy :
44
39
matrix :
45
40
python-version : [3.6, 3.7, 3.8]
56
51
python-version : ${{ matrix.python-version }}
57
52
- name : (Debug) Print Python Version
58
53
run : python3 --version
54
+ - name : Update apt cache to get all packages
55
+ run : sudo apt update
59
56
- name : Install the correct Python developer files
60
- run : sudo apt-get install -y python${{ matrix.python-version }}-dev
57
+ run : sudo apt install python${{ matrix.python-version }}-dev
61
58
- name : Install dependencies
62
59
run : ./.github/scripts/install-deps.sh
63
60
- name : Perform Developer Build
You can’t perform that action at this time.
0 commit comments