Skip to content

Commit 4ce7b55

Browse files
committedJan 2, 2022
GitHub Actions with Ubuntu 21.04 (which has needed tqdm version)
actions/runner-images#4011
1 parent f90fe3f commit 4ce7b55

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎.github/workflows/manual.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ jobs:
99
build:
1010
# The type of runner that the job will run on
1111
runs-on: ubuntu-20.04
12+
# Run the job in container
13+
container: ubuntu:21.04
1214

13-
# Steps represent a sequence of tasks that will be executed as part of the job
1415
steps:
1516
- name: Disk space utils
1617
run: |
@@ -29,9 +30,8 @@ jobs:
2930
uses: actions/checkout@v2
3031

3132
- name: Install dependencies
32-
#run: sudo apt-get -y install $(grep "^[^#]" dependencies.txt)
3333
run: |
34-
pip install tqdm defusedxml
34+
apt-get -y install $(grep "^[^#]" dependencies.txt)
3535
3636
- name: Build
3737
env:

‎dependencies.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# System dependencies for building status package list for Fedora
22
#
33
# dnf install $(grep "^[^#]" dependencies.txt)
4+
# or
5+
# apt-get -y install $(grep "^[^#]" dependencies.txt)
46

57
make
68
python3-defusedxml

0 commit comments

Comments
 (0)