mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
More tries to move from Travis to GA tests
This commit is contained in:
parent
5765cc099a
commit
aff551ccb9
2
.github/CONTRIBUTING.md
vendored
2
.github/CONTRIBUTING.md
vendored
|
@ -30,7 +30,7 @@ are listed here.
|
|||
|
||||
### I get a compilation error.
|
||||
|
||||
While you can check the build status at [Travis](https://travis-ci.org/zxing/zxing) to confirm,
|
||||
While you can check the build status on Github to confirm,
|
||||
the project correctly builds and passes tests at all times.
|
||||
90% of the time it's due to using an old version of Java. Version 3.4+ require Java 8.
|
||||
Use earlier versions with Java 7 and earlier.
|
||||
|
|
4
.github/workflows/test_java_8_android.yml
vendored
4
.github/workflows/test_java_8_android.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
|||
branches: [ master ]
|
||||
|
||||
env:
|
||||
ANDROID_HOME: $HOME/android-sdk-linux
|
||||
ANDROID_HOME: /tmp/android-sdk-linux
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -17,7 +17,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Android SDK
|
||||
run: if [ ! -d $HOME/android-sdk-linux/platforms ]; then curl -s https://storage.googleapis.com/zxing-build/android-sdk-linux.tar.bz2 | bunzip2 | tar xf - -C $HOME; else ls -l $HOME/android-sdk-linux; fi
|
||||
run: if [ ! -d /tmp/android-sdk-linux/platforms ]; then curl -s https://storage.googleapis.com/zxing-build/android-sdk-linux.tar.bz2 | bunzip2 | tar xf - -C /tmp; else ls -l /tmp/android-sdk-linux; fi
|
||||
- name: Set up JDK 8
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
|
|
|
@ -92,7 +92,6 @@ on StackOverflow](https://stackoverflow.com/questions/tagged/zxing).
|
|||
|
||||
## Etcetera
|
||||
|
||||
[](https://travis-ci.org/zxing/zxing)
|
||||
[](https://scan.coverity.com/projects/1924)
|
||||
[](https://codecov.io/github/zxing/zxing?branch=master)
|
||||
[](https://www.codacy.com/app/srowen/zxing?utm_source=github.com&utm_medium=referral&utm_content=zxing/zxing&utm_campaign=Badge_Grade)
|
||||
|
|
|
@ -64,23 +64,4 @@
|
|||
<name>ZXing Appspot-based encoder</name>
|
||||
<description>GWT-based encoder app hosted at zxing.appspot.com</description>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>travis</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>gwt-maven-plugin</artifactId>
|
||||
<version>${gwt.version}</version>
|
||||
<configuration>
|
||||
<!-- don't build in parallel on Travis -->
|
||||
<localWorkers>1</localWorkers>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in a new issue