mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 11:41:35 +01:00
build-linux and build-gem5 seem to work
This commit is contained in:
@@ -5,10 +5,10 @@ import os
|
||||
|
||||
import common
|
||||
|
||||
container_name = common.repo_short_id
|
||||
container_hostname = common.repo_short_id
|
||||
image_name = common.repo_short_id
|
||||
target_dir = '/root/{}'.format(common.repo_short_id)
|
||||
container_name = kwargs['repo_short_id']
|
||||
container_hostname = kwargs['repo_short_id']
|
||||
image_name = kwargs['repo_short_id']
|
||||
target_dir = '/root/{}'.format(kwargs['repo_short_id'])
|
||||
docker = ['sudo', 'docker']
|
||||
def create(args):
|
||||
self.sh.run_cmd(docker + ['build', '-t', image_name, '.', LF])
|
||||
|
||||
Reference in New Issue
Block a user