Skip to content

Commit

Permalink
apply environment variables to ci and lint jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ivantopo committed Aug 7, 2024
1 parent 65feda6 commit cdbc5a3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
name: Test all the things

on: [ push, pull_request ]
env:
JAVA_OPTS: -Xms5120M -Xmx5120M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms5120M -Xmx5120M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8

jobs:
ci:
runs-on: self-hosted
env:
JAVA_OPTS: -Xms5120M -Xmx5120M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms5120M -Xmx5120M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- uses: actions/checkout@v1
- run: git fetch -f --depth=1 origin '+refs/tags/*:refs/tags/*'
Expand Down

0 comments on commit cdbc5a3

Please sign in to comment.