aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSean Owen <srowen@gmail.com>2022-02-28 23:06:04 -0600
committerSean Owen <srowen@gmail.com>2022-02-28 23:06:04 -0600
commitaff551ccb9d27410578f076ad743db3f011b1598 (patch)
treeb7f22425c2898d1b6bc963622cac3255ec5ecd86 /.github
parent5765cc099aa369d32453fd63580b0d5e73dca05a (diff)
downloadzxing-aff551ccb9d27410578f076ad743db3f011b1598.tar.gz
More tries to move from Travis to GA tests
Diffstat (limited to '.github')
-rw-r--r--.github/CONTRIBUTING.md2
-rw-r--r--.github/workflows/test_java_8_android.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index ee461d37d..6e0c44c5b 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -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.
diff --git a/.github/workflows/test_java_8_android.yml b/.github/workflows/test_java_8_android.yml
index 6c97313fd..677093c28 100644
--- a/.github/workflows/test_java_8_android.yml
+++ b/.github/workflows/test_java_8_android.yml
@@ -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: