Skip to content

Commit

Permalink
ci: removes travis and updates GHA (#77)
Browse files Browse the repository at this point in the history
Travis hasn't run in three years, so we shouldn't pretend we are.

See openzipkin/zipkin#3608

Signed-off-by: Adrian Cole <[email protected]>
  • Loading branch information
codefromthecrypt authored Dec 5, 2023
1 parent 4ae30ff commit 495e67c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 37 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ on:

jobs:
deploy:
runs-on: ubuntu-20.04 # newest available distribution, aka focal
runs-on: ubuntu-22.04 # newest available distribution, aka jellyfish
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1 # only needed to get the sha label
# We can't cache Docker without using buildx because GH actions restricts /var/lib/docker
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ on:

jobs:
test:
runs-on: ubuntu-20.04 # newest available distribution, aka focal
runs-on: ubuntu-22.04 # newest available distribution, aka jellyfish
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1 # only needed to get the sha label
# We can't cache Docker without using buildx because GH actions restricts /var/lib/docker
Expand Down
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set -uex

# Ensure we can create hs_err_pid*.log
ulimit -c unlimited
function maybe_log_crash() {
maybe_log_crash() {
(cat $(ls hs_err_pid*.log) 2>&- || true) && exit 1;
}

Expand Down

0 comments on commit 495e67c

Please sign in to comment.