chore(deps): bump com.mixpanel:mixpanel-java from 1.5.3 to 1.5.4 #393
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: Linux | |
| on: [ push, pull_request ] | |
| env: | |
| JBR_MAJOR: 21.0.8 | |
| JBR_PATCH: b1138.52 | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-24.04-arm, ubuntu-latest ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-${{ runner.arch }}-gradlexyz-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ runner.arch }}-gradlexyz- | |
| - name: Set dynamic DOCKER_NAME | |
| run: | | |
| echo "DOCKER_NAME=hstyi/jbr:${{ env.JBR_MAJOR }}${{ env.JBR_PATCH }}" >> $GITHUB_ENV | |
| - name: Create docker-run.sh helper script | |
| shell: bash | |
| run: | | |
| cat <<'EOF' > docker-run.sh | |
| #!/bin/bash | |
| docker run --rm -v $HOME/.gradle:/root/.gradle -v "$(pwd)":/app -w /app "$@" | |
| EOF | |
| chmod +x docker-run.sh | |
| - name: Compile | |
| shell: bash | |
| run: ./docker-run.sh $DOCKER_NAME bash -c './gradlew :check-license && ./gradlew classes -x test' | |
| - name: JLink | |
| shell: bash | |
| run: ./docker-run.sh $DOCKER_NAME bash -c './gradlew :jar :copy-dependencies :plugins:migration:build :jlink' | |
| - name: Package Deb | |
| shell: bash | |
| run: ./docker-run.sh -e TERMORA_TYPE=deb $DOCKER_NAME bash -c './gradlew :jpackage && ./gradlew :dist' | |
| - name: Package AppImage | |
| shell: bash | |
| run: ./docker-run.sh --device /dev/fuse --cap-add SYS_ADMIN --security-opt apparmor:unconfined $DOCKER_NAME bash -c 'rm -rf build/jpackage && ./gradlew :jpackage && ./gradlew :dist' | |
| - name: Make ~/.gradle world-writable | |
| shell: bash | |
| run: sudo chmod -R 777 ~/.gradle | |
| - name: Upload targz artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: termora-linux-targz-${{ runner.arch }} | |
| path: | | |
| build/distributions/*.tar.gz | |
| - name: Upload AppImage artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: termora-linux-AppImage-${{ runner.arch }} | |
| path: | | |
| build/distributions/*.AppImage | |
| - name: Upload deb artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: termora-linux-deb-${{ runner.arch }} | |
| path: | | |
| build/distributions/*.deb |