Skip to content

Commit

Permalink
Remove Travis CI configuration and replace it with the GH Actions con…
Browse files Browse the repository at this point in the history
…figuration.
  • Loading branch information
armiol committed Jun 21, 2022
1 parent 201e557 commit 6df151d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 50 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-on-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build under Ubuntu

on:
pull_request:
branches:
- master
- v1

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
java-version: 8
distribution: zulu
cache: gradle

- name: Pull config
run: git submodule update --init --recursive

- name: Build project and run tests
shell: bash
run: ./gradlew build --stacktrace

- name: Run smoke tests
shell: bash
run: cd ./tools/smoke-tests && ./gradlew build --stacktrace
50 changes: 0 additions & 50 deletions .travis.yml

This file was deleted.

0 comments on commit 6df151d

Please sign in to comment.