this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update ccpp.yml

authored by

Luboš Doležel and committed by
GitHub
2a548c6b 94e583c1

+8 -8
+8 -8
.github/workflows/ccpp.yml
··· 19 19 git submodule sync --recursive 20 20 git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 21 21 - name: install 22 - run: sudo apt-get update && sudo apt-get install cmake clang bison flex libfuse-dev libudev-dev pkg-config libc6-dev-i386 linux-headers-generic gcc-multilib libcairo2-dev libgl1-mesa-dev libtiff5-dev libfreetype6-dev git libelf-dev libxml2-dev libegl1-mesa-dev libfontconfig1-dev libbsd-dev libxrandr-dev libxcursor-dev libavutil-dev libpulse-dev libavformat-dev libavcodec-dev libavresample-dev ccache devscripts debhelper ninja-build tree 22 + run: sudo apt-get update && sudo apt-get install cmake clang bison flex libfuse-dev libudev-dev pkg-config libc6-dev-i386 linux-headers-generic gcc-multilib libcairo2-dev libgl1-mesa-dev libtiff5-dev libfreetype6-dev git libelf-dev libxml2-dev libegl1-mesa-dev libfontconfig1-dev libbsd-dev libxrandr-dev libxcursor-dev libgif-dev libavutil-dev libpulse-dev libavformat-dev libavcodec-dev libavresample-dev ccache devscripts debhelper ninja-build tree 23 23 - name: Prepare ccache timestamp 24 24 id: ccache_cache_timestamp 25 25 shell: cmake -P {0} ··· 37 37 run: ccache -s 38 38 - name: make deb 39 39 run: tools/makedeb 40 - - name: Move & compress DEBs 41 - run: mkdir dist && cp ../*.deb dist && tar -cJf dist.tar.xz dist 40 + - name: Move DEBs 41 + run: mkdir dist && mv ../*.deb dist 42 42 - name: Upload Artifacts 43 43 uses: actions/upload-artifact@v1 44 44 with: 45 45 name: 'debs' 46 - path: dist.tar.xz 46 + path: dist/ 47 47 build-src: 48 48 49 49 runs-on: ubuntu-latest ··· 60 60 git submodule sync --recursive 61 61 git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 62 62 - name: install 63 - run: sudo apt-get update && sudo apt-get install cmake clang bison flex libfuse-dev libudev-dev pkg-config libc6-dev-i386 linux-headers-generic gcc-multilib libcairo2-dev libgl1-mesa-dev libtiff5-dev libfreetype6-dev git libelf-dev libxml2-dev libegl1-mesa-dev libfontconfig1-dev libbsd-dev libxrandr-dev libxcursor-dev libavutil-dev libpulse-dev libavformat-dev libavcodec-dev libavresample-dev ccache devscripts debhelper ninja-build tree 63 + run: sudo apt-get update && sudo apt-get install cmake clang bison flex libfuse-dev libudev-dev pkg-config libc6-dev-i386 linux-headers-generic gcc-multilib libcairo2-dev libgl1-mesa-dev libtiff5-dev libfreetype6-dev git libelf-dev libxml2-dev libegl1-mesa-dev libfontconfig1-dev libbsd-dev libxrandr-dev libxcursor-dev libgif-dev libavutil-dev libpulse-dev libavformat-dev libavcodec-dev libavresample-dev ccache devscripts debhelper ninja-build tree 64 64 - name: Prepare ccache timestamp 65 65 id: ccache_cache_timestamp 66 66 shell: cmake -P {0} ··· 78 78 run: ccache -s 79 79 - name: make deb src 80 80 run: tools/makedeb --dsc 81 - - name: Move & compress DEBs 82 - run: mkdir source && cp ../*~testing.* source && tar -cJf source.tar.xz source 81 + - name: Move DEBs 82 + run: mkdir source && mv ../*~testing.* source 83 83 - name: Upload Artifacts 84 84 uses: actions/upload-artifact@v1 85 85 with: 86 86 name: 'source' 87 - path: source.tar.xz 87 + path: source/