Home
last modified time | relevance | path

Searched +full:docker +full:- +full:run (Results 1 – 10 of 10) sorted by relevance

/sof-2.7.6/scripts/
DREADME.docker1 The docker container provided in docker_build sets up a build environment for
2 building Sound Open Firmware. A working docker installation is needed to run
3 the docker build container.
5 Note: In order to run docker as non sudo/root user please run.
7 sudo usermod -aG docker your-user-name
13 First, build the docker container. This step needs to be done initially and
18 ./docker-build.sh
20 After the container is built, it can be used to run the scripts.
23 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh -l byt
25 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh byt
[all …]
Ddocker-run.sh2 # SPDX-License-Identifier: BSD-3-Clause
5 # Runs a given script in the docker container you can generate from the
9 # ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh byt
11 # ./scripts/docker-run.sh ./scripts/build-tools.sh
13 # set -x
15 if tty --quiet; then
16 SOF_DOCKER_RUN="$SOF_DOCKER_RUN --tty"
19 docker run -i -v "$(pwd)":/home/sof/work/sof.git \
20 --env CMAKE_BUILD_TYPE \
21 --env PRIVATE_KEY_OPTION \
[all …]
Ddocker-qemu.sh2 # SPDX-License-Identifier: BSD-3-Clause
5 # Runs a given script in the docker container you can generate from the
8 # ./scripts/docker-qemu.sh ../sof.git/scripts/qemu-check.sh
11 docker run -i --shm-size=512m --privileged -v `pwd`:/home/sof/sof.git \
12 --user `id -u` sofqemu $@
/sof-2.7.6/.github/workflows/
Dpull-request.yml1 ---
2 # Tools that can save round-trips to github and a lot of time:
4 # yamllint -f parsable pull_request.yml
6 # yaml merge-expand pull_request.yml exp.yml &&
7 # diff -w -u pull_request.yml exp.yml
14 # this name is the Checks window next to other, non-github checks.
17 # yamllint disable-line rule:truthy
21 - 'main'
22 - 'stable-**'
23 - '**-stable'
[all …]
Dinstaller.yml1 ---
2 # Tools that can save round-trips to github and a lot of time:
4 # yamllint -f parsable this.yml
6 # yaml merge-expand this.yml exp.yml && diff -w -u this.yml exp.yml
15 # yamllint disable-line rule:truthy
20 runs-on: ubuntu-20.04
22 - uses: actions/checkout@v2
24 with: {fetch-depth: 50, submodules: recursive}
26 - name: docker
27 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof
[all …]
Dtools.yml1 ---
7 # yamllint disable-line rule:truthy
11 # This is not the same as building every ./build-tools.sh option.
12 top-level_default_CMake_target_ALL:
13 runs-on: ubuntu-latest
15 - uses: actions/checkout@v2
20 - name: docker
21 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof
24 - name: build-tools
25 run: CMAKE_BUILD_TYPE=Release ./scripts/docker-run.sh
[all …]
Dzephyr.yml1 ---
7 # yamllint disable-line rule:truthy
11 zephyr-build:
12 runs-on: ubuntu-20.04
14 - uses: actions/checkout@v2
16 with: {fetch-depth: 10, submodules: recursive}
18 - name: build
19 run: docker run -v "$(pwd)":/workdir
20 -e ZEPHYR_SDK_INSTALL_DIR='/opt/toolchains/zephyr-sdk-0.13.0'
21 docker.io/zephyrprojectrtos/zephyr-build:v0.18.3
[all …]
/sof-2.7.6/
D.travis.yml1 ---
2 # Suggested tools that can save round-trips to github and a lot of time:
6 # yaml merge-expand .travis.yml exp.yml && diff -b -u .travis.yml exp.yml
16 - docker
19 # only as presentation labels. Nothing in stage "tests" will run if
23 - buildonly
24 - tests
27 # 'name:'-less jobs appear with their env, e.g.: PLATFORM=tgl
33 - &build-platform
36 &docker-pull-sof
[all …]
/sof-2.7.6/scripts/docker_build/sof_qemu/
DDockerfile2 # Defines a docker image that can run Xtensa Qemu
6 # build docker image:
8 # ./docker-build.sh
10 # run docker image:
12 # ./scripts/docker-qemu.sh scrpits-or-command-you-want-run
23 # for non-interactive package install
26 RUN apt-get -y update && \
27 apt-get install -y \
31 apt-utils \
33 build-essential \
[all …]
/sof-2.7.6/scripts/docker_build/sof_builder/
DDockerfile2 # Use of this source code is governed by a BSD-style license that can be
5 # Defines a docker image that can build sound open firmware
9 # build docker image:
10 # docker build --build-arg UID=$(id -u) -t sof .
11 # docker run -it -v <insert sof dir here>:/home/sof/workdir --user `id -u` sof
14 # docker run -it -v <insert sof dir here>:/home/sof/work/sof.git --user `id -u` sof ./incremental.…
25 # for non-interactive package install
28 RUN apt-get -y update && \
29 apt-get install -y \
31 apt-utils \
[all …]