Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
GitHub Actions: split the workflows (#15403)
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Jun 1, 2020
1 parent 08d49a7 commit 9f64f22
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 40 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/amd64_linux_clang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: amd64_linux_clang

on: [push, pull_request]

jobs:

amd64_linux_clang:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- run: sudo apt -y -qq update
- run: sudo apt install -y clang cmake qt5-default libqt5webkit5-dev python
name: Install requirements
- run: clang++ --version && cmake --version && qmake --version && python --version
name: Display tools version
- run: CC=clang CXX=clang++ ./configure
- run: make
- run: file ./bin/phantomjs
- run: ./bin/phantomjs --version
- run: make check
21 changes: 21 additions & 0 deletions .github/workflows/amd64_linux_gcc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: amd64_linux_gcc

on: [push, pull_request]

jobs:

amd64_linux_gcc:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- run: sudo apt -y -qq update
- run: sudo apt install -y g++ cmake qt5-default libqt5webkit5-dev python
name: Install requirements
- run: g++ --version && cmake --version && qmake --version && python --version
name: Display tools version
- run: ./configure
- run: make
- run: file ./bin/phantomjs
- run: ./bin/phantomjs --version
- run: make check

40 changes: 0 additions & 40 deletions .github/workflows/tests.yml

This file was deleted.

0 comments on commit 9f64f22

Please sign in to comment.