Upgrade GitHub Actions for Node 24 compatibility #715
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: continuous integration | |
| env: | |
| JAVA_OPTS: "-Dsbt.log.noformat=true" | |
| TRAVIS: "true" # pretend we're TravisCI | |
| SBT_VERSION: 1.7.1 | |
| BUILD_VERSION: "v1" # bump this if builds are failing due to a bad cache | |
| defaults: | |
| run: | |
| shell: bash | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - release | |
| pull_request: | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| scala: [2.12.12, 2.13.6] | |
| java: ['1.8', '1.11'] | |
| project: ['finagle-base-http', 'finagle-benchmark', 'finagle-benchmark-thrift', 'finagle-core', 'finagle-example', 'finagle-exp', 'finagle-grpc-context', 'finagle-http', 'finagle-http2','finagle-init','finagle-integration','finagle-memcached','finagle-mux','finagle-mysql','finagle-netty4','finagle-netty4-http','finagle-opencensus-tracing','finagle-partitioning','finagle-redis','finagle-scribe','finagle-serversets','finagle-stats','finagle-stats-core','finagle-thrift','finagle-thriftmux','finagle-toggle','finagle-tunable','finagle-zipkin-core','finagle-zipkin-scribe'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| - name: echo java version | |
| run: java -Xmx32m -version | |
| - name: echo javac version | |
| run: javac -J-Xmx32m -version | |
| - name: cache build dependencies | |
| uses: actions/cache@v5 | |
| env: | |
| cache-name: cache-build-deps | |
| with: | |
| path: | | |
| ~/.dodo | |
| ~/.ivy2/cache | |
| ~/.ivy2/local/com.twitter | |
| ~/.sbt | |
| key: ${{ runner.os }}-build-${{ env.BUILD_VERSION }}-${{ env.cache-name }}-${{ env.SBT_VERSION }}-${{ matrix.scala }}-${{ matrix.java }} | |
| - name: update cache | |
| run: | | |
| if [ -f ~/.ivy2/cache ]; then | |
| find ~/.ivy2/cache -name "ivydata-*.properties" -delete | |
| fi | |
| if [ -f ~/.sbt ]; then | |
| find ~/.sbt -name "*.lock" -delete | |
| fi | |
| - name: build dependencies | |
| uses: twitter/dodo-build@v3 | |
| with: | |
| branch: develop | |
| project: finagle | |
| no-test: true | |
| publish-m2: true | |
| verbose: true | |
| - name: test | |
| run: ${{ format('./sbt ++{0} clean "{1}/test"', matrix.scala, matrix.project) }} | |
| build-with-netty-snapshot: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| scala: [2.12.12, 2.13.6] | |
| java: ['1.8', '1.11'] | |
| project: ['finagle-base-http','finagle-core','finagle-http','finagle-http2','finagle-integration','finagle-mux','finagle-mysql','finagle-netty4','finagle-netty4-http','finagle-thriftmux'] | |
| continue-on-error: true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| - name: echo java version | |
| run: java -Xmx32m -version | |
| - name: echo javac version | |
| run: javac -J-Xmx32m -version | |
| - name: cache build dependencies | |
| uses: actions/cache@v5 | |
| env: | |
| cache-name: cache-build-deps | |
| with: | |
| path: | | |
| ~/.dodo | |
| ~/.ivy2/cache | |
| ~/.ivy2/local/com.twitter | |
| ~/.sbt | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.SBT_VERSION }}-${{ matrix.scala }}-${{ matrix.java }} | |
| - name: update cache | |
| run: | | |
| if [ -f ~/.ivy2/cache ]; then | |
| find ~/.ivy2/cache -name "ivydata-*.properties" -delete | |
| fi | |
| if [ -f ~/.sbt ]; then | |
| find ~/.sbt -name "*.lock" -delete | |
| fi | |
| - name: build dependencies | |
| uses: twitter/dodo-build@v3 | |
| with: | |
| branch: develop | |
| project: finagle | |
| no-test: true | |
| publish-m2: true | |
| verbose: true | |
| - name: set up netty snapshot | |
| run: source ./netty-snapshot-env.sh | |
| - name: test | |
| run: ${{ format('./sbt ++{0} clean "{1}/test"', matrix.scala, matrix.project) }} |