Searched +full:docker +full:- +full:run (Results 1 – 14 of 14) 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 tgl25 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh tgl[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 tgl11 # ./scripts/docker-run.sh ./scripts/build-tools.sh13 # set -x15 set -e21 docker images --digests "$rep"24 if tty --quiet; then25 SOF_DOCKER_RUN="$SOF_DOCKER_RUN --tty"28 # The --user option below can cause the command to run as a user who[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 $@
2 # SPDX-License-Identifier: BSD-3-Clause14 # The main use case is to run this first thing inside a container to17 # `docker run --user=$(id -un) ...` achieves something very similar21 # To understand more about the Docker problem solved here take a look at22 …s://stackoverflow.com/questions/35291520/docker-and-userns-remap-how-to-manage-volume-permissions-…27 set -e28 set -x32 cwd_uid="$(stat --printf='%u' .)"33 local current_uid; current_uid="$(id -u)"47 local cwd_guid; cwd_guid="$(stat --printf='%g' .)"[all …]
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.yml16 # yamllint disable-line rule:truthy20 - 'main'21 - 'stable-**'22 - '**-stable'25 - 'main'[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.0423 fail-fast: false27 IPC_VERSION=IPC4 UNSIGNED_list= SIGNED_list='tgl tgl-h',31 - uses: actions/checkout@v233 with: {fetch-depth: 50, submodules: recursive}[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:truthy16 warnings-subset:18 # We're sharing binaries with the zephyr-build container so keep20 runs-on: ubuntu-20.0423 fail-fast: false27 real_cc: xtensa-intel_s1000_zephyr-elf/bin/xtensa-intel_s1000_zephyr-elf-gcc},37 real_cc: xtensa-intel_s1000_zephyr-elf/bin/xtensa-intel_s1000_zephyr-elf-gcc},41 - name: git clone sparse analyzer44 fetch-depth: 10[all …]
1 ---2 # SPDX-License-Identifier: BSD-3-Clause3 # Tools that can save round-trips to github and a lot of time:5 # yamllint -f parsable this.yml7 # yaml merge-expand this.yml exp.yml && diff -w -u this.yml exp.yml14 # yamllint disable-line rule:truthy19 runs-on: ubuntu-20.0422 - uses: actions/checkout@v223 with: {fetch-depth: 5, submodules: recursive}25 - name: docker pull[all …]
1 ---7 # yamllint disable-line rule:truthy12 # eg. "Zephyr-pull_request-my_fork_branch_to_merge"13 # eg. "Zephyr-push-refs/heads/my_branch_merging"14 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}15 cancel-in-progress: true19 manifest-check:20 runs-on: ubuntu-latest22 - uses: actions/checkout@v326 - name: plain west update[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 # SPDX-License-Identifier: BSD-3-Clause5 # set -x10 # ./sof/zephyr/docker-run.sh ls -l /opt/toolchains/11 # ./sof/zephyr/docker-run.sh /opt/sparse/bin/sparse --version12 # ./sof/zephyr/docker-run.sh /bin/bash15 # https://github.com/zephyrproject-rtos/docker-image/commits/master21 # docker tag ghcr.io/zephyrproject-rtos/zephyr-build:v0.24.122 # ghcr.io/zephyrproject-rtos/zephyr-build:latest29 # docker image rm ghcr.io/zephyrproject-rtos/zephyr-build:latest31 # (The actual image stays in the docker cache, only the tag is deleted)[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 …]