Searched full:docker (Results 1 – 20 of 20) 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.sh23 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh -l tgl25 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh tgl28 ./scripts/docker-run.sh ./scripts/build-tools.sh[all …]
5 # 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.sh21 docker images --digests "$rep"36 docker run -i -v "${SOF_TOP}":/home/sof/work/sof.git \
5 # 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 \
17 # `docker run --user=$(id -un) ...` achieves something very similar21 # To understand more about the Docker problem solved here take a look at22 # https://stackoverflow.com/questions/35291520/docker-and-userns-remap-how-to-manage-volume-permiss…
144 # This will fail in Docker; Docker should provide this bind
9 # They must have a toolchain available in the latest Docker image.68 -a Build all default platforms fully supported by the latest Docker image and CI
133 # dump log into sof.git incase running in docker
16 - docker36 &docker-pull-sof37 docker pull thesofproject/sof && docker tag thesofproject/sof sof39 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh -r $PLATFORM52 before_install: *docker-pull-sof53 script: CMAKE_BUILD_TYPE=Release ./scripts/docker-run.sh ./scripts/build-tools.sh61 - ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh -o no-agent -r $PLATFORM62 - ./scripts/docker-qemu.sh ../sof.git/scripts/qemu-check.sh $PLATFORM65 - *docker-pull-sof66 - docker pull thesofproject/sofqemu &&[all …]
10 # ./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.129 # docker image rm ghcr.io/zephyrproject-rtos/zephyr-build:latest31 # (The actual image stays in the docker cache, only the tag is deleted)41 docker images --digests | grep REPOSITORY42 docker images --digests | grep -i zephyr | sort58 # https://hub.docker.com/r/zephyrprojectrtos/zephyr-build/tags[all …]
8 # Minor adjustments to the docker image provided by the Zephyr project.30 # https://github.com/zephyrproject-rtos/docker-image/blob/master/Dockerfile
104 # option, Docker testing etc.112 - name: docker113 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof116 run: ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh -a ||117 ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh -a -j 1140 - name: docker141 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof146 run: ./scripts/docker-run.sh179 - name: docker SOF180 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof[all …]
20 - name: docker21 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof25 run: CMAKE_BUILD_TYPE=Release ./scripts/docker-run.sh28 CMAKE_BUILD_TYPE=Release ./scripts/docker-run.sh
35 - name: docker36 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof46 # harder through 'docker-run.sh'.48 ./scripts/docker-run.sh51 ./scripts/docker-run.sh
25 - name: docker pull26 run: docker pull thesofproject/sof && docker tag thesofproject/sof sof29 run: ./scripts/docker-run.sh ./scripts/test-repro-build.sh
65 # https://github.com/ScribeMD/docker-cache/issues/30467 - name: Download docker image && ls /opt/toolchains/68 run: cd workspace && ./sof/zephyr/docker-run.sh ls -l /opt/toolchains/70 # We have to painfully extract REAL_CC from the docker image to80 ./sof/zephyr/docker-run.sh /bin/sh -c \84 REAL_CC="$ZSDK/$_RCC" ./sof/zephyr/docker-run.sh \85 ./sof/zephyr/docker-build.sh ${{ matrix.platforms.platform }} \
123 # https://github.com/ScribeMD/docker-cache/issues/304125 - name: Download docker image && ls /opt/toolchains/126 run: cd workspace && ./sof/zephyr/docker-run.sh ls -l /opt/toolchains/128 # https://github.com/zephyrproject-rtos/docker-image132 run: cd workspace && ./sof/zephyr/docker-run.sh133 ./sof/zephyr/docker-build.sh --cmake-args=-DEXTRA_CFLAGS=-Werror187 # sof/zephyr/docker-run.sh
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-run
5 docker build --build-arg UID=$(id -u) --build-arg host_http_proxy="$http_proxy" \
5 # 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.…