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
e3d1a89b 2a548c6b

+2 -17
+2 -17
.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 libgif-dev libavutil-dev libpulse-dev libavformat-dev libavcodec-dev libavresample-dev ccache devscripts debhelper ninja-build tree 23 - - name: Prepare ccache timestamp 24 - id: ccache_cache_timestamp 25 - shell: cmake -P {0} 26 - run: | 27 - string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC) 28 - message("::set-output name=timestamp::${current_date}") 29 - - name: ccache cache files 30 - uses: actions/cache@v1.1.0 31 - with: 32 - path: /home/runner/.ccache 33 - key: ${ { matrix.config.name } }-ccache-${ { steps.ccache_cache_timestamp.outputs.timestamp } } 34 - restore-keys: | 35 - ${ { matrix.config.name } }-ccache- 36 - - name: ccache info 37 - run: ccache -s 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 devscripts debhelper ninja-build tree 38 23 - name: make deb 39 - run: tools/makedeb 24 + run: tools/makedeb -j2 40 25 - name: Move DEBs 41 26 run: mkdir dist && mv ../*.deb dist 42 27 - name: Upload Artifacts