fix: remove unused config arg #7747
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: "sdktest" | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'release-*' | |
| paths-ignore: | |
| - '.autocorrectrc' | |
| - '.markdownlint-cli2.jsonc' | |
| - 'package*.json' | |
| - 'docs/**' | |
| - '**.md' | |
| pull_request: | |
| #The branches below must be a subset of the branches above | |
| branches: | |
| - 'main' | |
| - 'release-*' | |
| paths-ignore: | |
| - '.autocorrectrc' | |
| - '.markdownlint-cli2.jsonc' | |
| - 'package*.json' | |
| - 'docs/**' | |
| - '**.md' | |
| - '.github/**' | |
| workflow_dispatch: | |
| inputs: | |
| debug: | |
| type: boolean | |
| description: "Run the build with tmate debugging enabled" | |
| required: false | |
| default: false | |
| schedule: | |
| - cron: '0 17 * * *' | |
| jobs: | |
| sdktest: | |
| timeout-minutes: 50 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 1 | |
| - name: Build | |
| timeout-minutes: 10 | |
| uses: ./.github/actions/build | |
| - name: Set up Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '8' | |
| - name: Run Redis | |
| run: | | |
| sudo docker run -d --name redis -v redis-data:/data \ | |
| -p 6379:6379 redis redis-server --appendonly yes | |
| - name: Juicefs Format | |
| run: | | |
| sudo ./juicefs format localhost --bucket=/mnt/jfs dev | |
| - name: Juicefs Mount | |
| run: | | |
| sudo ./juicefs mount -d localhost /jfs | |
| touch /jfs/inner_sym_target | |
| echo "hello juicefs" > /jfs/inner_sym_target | |
| cd /jfs | |
| ln -s inner_sym_target inner_sym_link | |
| mkdir etc | |
| chmod 777 etc | |
| echo `hostname` > etc/nodes | |
| echo "tom:3001" > users | |
| echo "g1:2001:tom" > groups | |
| mkdir /jfs/tmp | |
| chmod 777 /jfs/tmp | |
| - name: Sdk Test | |
| run: | | |
| make -C sdk/java/libjfs | |
| cd sdk/java | |
| sudo mvn test -B -Dtest=\!io.juicefs.permission.** | |
| sudo mvn test -B -Dflink.version=1.17.2 -Dtest=io.juicefs.JuiceFileSystemTest#testFlinkHadoopRecoverableWriter | |
| # ranger test | |
| sudo JUICEFS_RANGER_TEST=1 mvn test -B -Dtest=io.juicefs.permission.RangerPermissionCheckerTest,\!io.juicefs.permission.RangerPermissionCheckerTest#testRangerCheckerInitFailed | |
| sudo mvn test -B -Dtest=io.juicefs.permission.RangerPermissionCheckerTest#testRangerCheckerInitFailed | |
| sudo mvn package -B -Dmaven.test.skip=true --quiet -Dmaven.javadoc.skip=true | |
| expect=$(git rev-parse --short HEAD | cut -b 1-7) | |
| ls /tmp/libjfs* | grep $expect | |
| - name: Send Slack Notification | |
| if: failure() | |
| uses: juicedata/slack-notify-action@main | |
| with: | |
| channel-id: "${{ secrets.SLACK_CHANNEL_ID_FOR_PR_CHECK_NOTIFY }}" | |
| slack_bot_token: "${{ secrets.SLACK_BOT_TOKEN }}" | |
| - name: Setup upterm session | |
| if: failure() && (github.event.inputs.debug == 'true' || github.run_attempt != 1) | |
| timeout-minutes: 60 | |
| uses: lhotari/action-upterm@v1 |