diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-10-30 15:14:39 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-10-30 15:30:48 -0400 |
commit | fd973acd34175d3bc9349db6f3101b927e33f390 (patch) | |
tree | e42cab7e9005edda20a57ad99819859da36756dc /.github | |
parent | 33a2d48888e685fb832ea9e3e30b2df218ab424b (diff) | |
download | kutter-fd973acd34175d3bc9349db6f3101b927e33f390.tar.gz kutter-fd973acd34175d3bc9349db6f3101b927e33f390.tar.xz kutter-fd973acd34175d3bc9349db6f3101b927e33f390.zip |
build-test: Remove references to "travis" in build tests
Use "ci-build.sh" "ci-install.sh" and similar, as travis-ci is no
longer being used.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-test.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index be4d74c4..bcd98fd3 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -14,17 +14,17 @@ jobs: - name: Setup cache uses: actions/cache@v2 with: - path: travis_cache - key: ${{ runner.os }}-build-${{ hashFiles('scripts/travis-install.sh') }} + path: ci_cache + key: ${{ runner.os }}-build-${{ hashFiles('scripts/ci-install.sh') }} - name: Prepare tests - run: ./scripts/travis-install.sh + run: ./scripts/ci-install.sh - name: Test - run: ./scripts/travis-build.sh 2>&1 + run: ./scripts/ci-build.sh 2>&1 - name: Upload micro-controller data dictionaries uses: actions/upload-artifact@v2 with: name: data-dict - path: travis_build/dict + path: ci_build/dict |