Upgrade Buildserver VM

Use Vagrant boxes built with cloud-team/debian-vagrant-images instead of fdroid/basebox,
Use Debian Bullseye (11) instead of Debian Stretch (9)
This commit is contained in:
FestplattenSchnitzel 2021-09-03 12:18:13 +02:00 committed by Hans-Christoph Steiner
parent 7accb96b9e
commit df46eb86c3
7 changed files with 29 additions and 84 deletions

View file

@ -334,7 +334,7 @@ def main():
package_json = tmp_importer_dir / 'package.json' # react-native
pubspec_yaml = tmp_importer_dir / 'pubspec.yaml' # flutter
if package_json.exists():
build.sudo = ['apt-get update || apt-get update', 'apt-get install -t stretch-backports npm', 'npm install -g react-native-cli']
build.sudo = ['apt-get update || apt-get update', 'apt-get install npm', 'npm install -g react-native-cli']
build.init = ['npm install']
with package_json.open() as fp:
data = json.load(fp)