Searched +full:docker +full:- +full:run (Results 1 – 10 of 10) sorted by relevance
1 The docker container provided in docker_build sets up a build environment for2 building Sound Open Firmware. A working docker installation is needed to run3 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-name13 First, build the docker container. This step needs to be done initially and18 ./docker-build.sh20 After the container is built, it can be used to run the scripts.23 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh -l byt25 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh byt[all …]
2 # SPDX-License-Identifier: BSD-3-Clause5 # Runs a given script in the docker container you can generate from the9 # ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh byt11 # ./scripts/docker-run.sh ./scripts/build-tools.sh13 # set -x15 if tty --quiet; then16 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 …]
2 # SPDX-License-Identifier: BSD-3-Clause5 # Runs a given script in the docker container you can generate from the8 # ./scripts/docker-qemu.sh ../sof.git/scripts/qemu-check.sh11 docker run -i --shm-size=512m --privileged -v `pwd`:/home/sof/sof.git \12 --user `id -u` sofqemu $@
1 ---2 # Tools that can save round-trips to github and a lot of time:4 # yamllint -f parsable pull_request.yml6 # yaml merge-expand pull_request.yml exp.yml &&7 # diff -w -u pull_request.yml exp.yml14 # this name is the Checks window next to other, non-github checks.17 # yamllint disable-line rule:truthy21 - 'main'22 - 'stable-**'23 - '**-stable'[all …]
1 ---2 # Tools that can save round-trips to github and a lot of time:4 # yamllint -f parsable this.yml6 # yaml merge-expand this.yml exp.yml && diff -w -u this.yml exp.yml15 # yamllint disable-line rule:truthy20 runs-on: ubuntu-20.0422 - uses: actions/checkout@v224 with: {fetch-depth: 50, submodules: recursive}26 - name: docker27 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof[all …]
1 ---7 # yamllint disable-line rule:truthy11 # This is not the same as building every ./build-tools.sh option.12 top-level_default_CMake_target_ALL:13 runs-on: ubuntu-latest15 - uses: actions/checkout@v220 - name: docker21 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof24 - name: build-tools25 run: CMAKE_BUILD_TYPE=Release ./scripts/docker-run.sh[all …]
1 ---7 # yamllint disable-line rule:truthy11 zephyr-build:12 runs-on: ubuntu-20.0414 - uses: actions/checkout@v216 with: {fetch-depth: 10, submodules: recursive}18 - name: build19 run: docker run -v "$(pwd)":/workdir20 -e ZEPHYR_SDK_INSTALL_DIR='/opt/toolchains/zephyr-sdk-0.13.0'21 docker.io/zephyrprojectrtos/zephyr-build:v0.18.3[all …]
1 ---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.yml16 - docker19 # only as presentation labels. Nothing in stage "tests" will run if23 - buildonly24 - tests27 # 'name:'-less jobs appear with their env, e.g.: PLATFORM=tgl33 - &build-platform36 &docker-pull-sof[all …]
2 # Defines a docker image that can run Xtensa Qemu6 # build docker image:8 # ./docker-build.sh10 # run docker image:12 # ./scripts/docker-qemu.sh scrpits-or-command-you-want-run23 # for non-interactive package install26 RUN apt-get -y update && \27 apt-get install -y \31 apt-utils \33 build-essential \[all …]
2 # Use of this source code is governed by a BSD-style license that can be5 # Defines a docker image that can build sound open firmware9 # 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` sof14 # docker run -it -v <insert sof dir here>:/home/sof/work/sof.git --user `id -u` sof ./incremental.…25 # for non-interactive package install28 RUN apt-get -y update && \29 apt-get install -y \31 apt-utils \[all …]