Skip to content

Commit

Permalink
Use GitHub Actions instead of Azure Pipelines
Browse files Browse the repository at this point in the history
Signed-off-by: Lisanna Dettwyler <[email protected]>
  • Loading branch information
lisanna-dettwyler authored and bmyates committed Jan 19, 2022
1 parent 78f08cc commit d0e0cc8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 88 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci-external.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
build-linux:
if: github.repository_owner == 'oneapi-src'
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: hendrikmuhs/ccache-action@v1
- name: Build Loader
run: |
mkdir build
cd build
cmake \
-D CMAKE_C_COMPILER_LAUNCHER=ccache \
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \
-D CMAKE_BUILD_TYPE=Release \
..
make -j$(nproc)
88 changes: 0 additions & 88 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit d0e0cc8

Please sign in to comment.