Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for github_actions (0.2 sec)

  1. docs/releasing.md

        ```
    
    5. Wait for [GitHub Actions][github_actions] to start the publish job.
    
    6. Prepare for ongoing development and push to GitHub.
    
        ```
        sed -i "" \
          "s/version = \".*\"/version = \"$NEXT_VERSION\"/g" \
          build.gradle.kts
        git commit -am "Prepare next development version."
        git push
        ```
    
    7. Confirm the [GitHub Actions][github_actions] publish job succeeded.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. .github/dependabot.yml

        target-branch: "maven-4.0.x"
        labels:
          - "mvn40"
          - "dependencies"
          - "github_actions"
    
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
        target-branch: "maven-3.9.x"
        labels:
          - "mvn3"
          - "dependencies"
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Aug 17 19:26:41 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            try {
                // Check if we're in CI environment (GitHub Actions specifically)
                String ci = System.getenv("CI");
                String githubActions = System.getenv("GITHUB_ACTIONS");
                boolean isCI = "true".equals(ci) || "true".equals(githubActions);
    
                // First, check if docker command is available
                ProcessBuilder pb = new ProcessBuilder("docker", "--version");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  4. .github/workflows/tests.yml

        - name: go mod package cache
          uses: actions/cache@v4
          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=sqlite ./tests/tests_all.sh
    
      mysql:
        strategy:
          matrix:
            dbversion: ['mysql:9', 'mysql:8', 'mysql:5.7']
            go: ['1.23', '1.24']
            platform: [ubuntu-latest]
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. tests/tests_all.sh

    if [[ $(pwd) == *"gorm/tests"* ]]; then
      cd ..
    fi
    
    if [ -d tests ]
    then
      cd tests
      go get -u -t ./...
      go mod download
      go mod tidy
      cd ..
    fi
    
    # SqlServer for Mac M1
    if [[ -z $GITHUB_ACTION && -d tests ]]; then
      cd tests
      if [[ $(uname -a) == *" arm64" ]]; then
        MSSQL_IMAGE=mcr.microsoft.com/azure-sql-edge docker compose up -d --wait
        go install github.com/microsoft/go-sqlcmd/cmd/sqlcmd@latest || true
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top