diff options
Diffstat (limited to '.github/workflows/linux_gcc_4_8.yml')
| -rw-r--r-- | .github/workflows/linux_gcc_4_8.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/linux_gcc_4_8.yml b/.github/workflows/linux_gcc_4_8.yml new file mode 100644 index 00000000..1f37785c --- /dev/null +++ b/.github/workflows/linux_gcc_4_8.yml @@ -0,0 +1,29 @@ +name: Linux GCC 4.8 + +on: [push, pull_request] + +jobs: + + linux_gcc_4_8: + runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Cache + uses: actions/cache@v2 + id: cache + with: + path: | + ${{ github.workspace }}/ccache.tar.gz + key: ${{ runner.os }}-cache-gcc-4-8-${{ github.run_id }} + restore-keys: ${{ runner.os }}-cache-gcc-4-8- + + - name: Run + run: docker run -e CI -e WORK_DIR="$PWD" -v $PWD:$PWD ubuntu:16.04 $PWD/.github/workflows/linux_gcc_4_8/start.sh + + - name: Coveralls + uses: coverallsapp/github-action@v1.1.2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} |
