Skip to content

Commit

Permalink
Add telegram extension to CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Feb 27, 2020
1 parent 6679d06 commit 049a076
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@ jobs:
-pl :camel-quarkus-integration-test-mail \
-pl :camel-quarkus-integration-test-pdf \
-pl :camel-quarkus-integration-test-stream \
-pl :camel-quarkus-integration-test-telegram \
-pl :camel-quarkus-integration-test-tarfile \
-pl :camel-quarkus-integration-test-validator \
-pl :camel-quarkus-integration-test-zipfile \
-pl :camel-quarkus-integration-test-jira
-pl :camel-quarkus-integration-test-zipfile
saas:
runs-on: ubuntu-latest
needs: build
Expand Down Expand Up @@ -406,6 +406,7 @@ jobs:
-Ddocker \
-DskipTests \
-pl :camel-quarkus-integration-test-box \
-pl :camel-quarkus-integration-test-jira \
-pl :camel-quarkus-integration-test-salesforce \
-pl :camel-quarkus-integration-test-slack \
-pl :camel-quarkus-integration-test-twitter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
package org.apache.camel.quarkus.component.telegram.it;

import io.quarkus.test.junit.NativeImageTest;
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable;

@NativeImageTest
@EnabledIfEnvironmentVariable(named = "TELEGRAM_AUTHORIZATION_TOKEN", matches = "[^ ]+")
class TelegramIT extends TelegramTest {

}

0 comments on commit 049a076

Please sign in to comment.