From 3c4137e55a0c1cac37b690d34a14b3d921c75c09 Mon Sep 17 00:00:00 2001 From: Sebastian Fischer Date: Wed, 21 Aug 2024 18:18:25 +0200 Subject: [PATCH] ci: add dev-check --- .github/workflows/devcheck.yml | 184 +++++++++++++++++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 .github/workflows/devcheck.yml diff --git a/.github/workflows/devcheck.yml b/.github/workflows/devcheck.yml new file mode 100644 index 00000000..d38469cf --- /dev/null +++ b/.github/workflows/devcheck.yml @@ -0,0 +1,184 @@ + +# r cmd check workflow of the mlr3 ecosystem v0.3.1 +# https://github.com/mlr-org/actions +on: + workflow_dispatch: + inputs: + debug_enabled: + type: boolean + description: 'Run the build with tmate debugging enabled' + required: false + default: false + push: + branches: + - main + pull_request: + branches: + - main + schedule: + - cron: '0 4 * * 1' + +name: Dev Check + +jobs: + check-package: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.dev-package }} + + strategy: + fail-fast: false + matrix: + config: + - {os: ubuntu-20.04, r: 'release', dev-package: "mlr-org/paradox', 'mlr-org/mlr3', 'mlr-org/mlr3pipelines', 'mlverse/torch"} + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + + steps: + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + + - name: Set test environment variables (unix) + if: runner.os != 'Windows' + run: | + echo "TORCH_TEST=1" >> $GITHUB_ENV + echo "INCLUDE_IGNORED=1" >> $GITHUB_ENV + + - name: Set test environment variables (windows) + if: runner.os == 'Windows' + run: | + echo "TORCH_TEST=1" >> $env:GITHUB_ENV + echo "INCLUDE_IGNORED=1" >> $env:GITHUB_ENV + + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - name: Install torch + run: | + Rscript -e 'torch::install_torch()' + + - name: Install further packages + run: | + Rscript -e 'install.packages("rappdirs")' + + - name: Get torchvision package version (Linux/macOS) + if: runner.os != 'Windows' + id: get_package_version_unix + run: | + echo "TORCHVISION_PACKAGE_VERSION=$(Rscript -e 'cat(as.character(packageVersion("torchvision")))')" >> $GITHUB_ENV + + - name: Get torchvision package version (Windows) + if: runner.os == 'Windows' + id: get_package_version_windows + run: | + $version = Rscript -e 'cat(as.character(packageVersion("torchvision")))' + echo "TORCHVISION_PACKAGE_VERSION=$version" >> $env:GITHUB_ENV + + - name: Get torch cache path (Linux/macOS) + if: runner.os != 'Windows' + id: get_cache_path_unix + run: | + echo "TORCH_CACHE_PATH=$(Rscript -e 'cat(rappdirs::user_cache_dir("torch"))')" >> $GITHUB_ENV + + - name: Get torch cache path (Windows) + if: runner.os == 'Windows' + id: get_cache_path_windows + run: | + $cachePath = Rscript -e 'cat(rappdirs::user_cache_dir("torch"))' + echo "TORCH_CACHE_PATH=$cachePath" >> $env:GITHUB_ENV + + - name: Cache Torchvision Downloads + uses: actions/cache@v4 + with: + path: ${{ env.TORCH_CACHE_PATH }} + key: ${{ runner.os }}-r-${{ env.TORCHVISION_PACKAGE_VERSION }} + + - uses: r-lib/actions/check-r-package@v2 + + - uses: mxschmitt/action-tmate@v3 + if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} + with: + limit-access-to-actor: true + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + + steps: + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + + - name: Set test environment variables (unix) + if: runner.os != 'Windows' + run: | + echo "TORCH_TEST=1" >> $GITHUB_ENV + echo "INCLUDE_IGNORED=1" >> $GITHUB_ENV + + - name: Set test environment variables (windows) + if: runner.os == 'Windows' + run: | + echo "TORCH_TEST=1" >> $env:GITHUB_ENV + echo "INCLUDE_IGNORED=1" >> $env:GITHUB_ENV + + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - name: Install torch + run: | + Rscript -e 'torch::install_torch()' + + - name: Install further packages + run: | + Rscript -e 'install.packages("rappdirs")' + + - name: Get torchvision package version (Linux/macOS) + if: runner.os != 'Windows' + id: get_package_version_unix + run: | + echo "TORCHVISION_PACKAGE_VERSION=$(Rscript -e 'cat(as.character(packageVersion("torchvision")))')" >> $GITHUB_ENV + + - name: Get torchvision package version (Windows) + if: runner.os == 'Windows' + id: get_package_version_windows + run: | + $version = Rscript -e 'cat(as.character(packageVersion("torchvision")))' + echo "TORCHVISION_PACKAGE_VERSION=$version" >> $env:GITHUB_ENV + + - name: Get torch cache path (Linux/macOS) + if: runner.os != 'Windows' + id: get_cache_path_unix + run: | + echo "TORCH_CACHE_PATH=$(Rscript -e 'cat(rappdirs::user_cache_dir("torch"))')" >> $GITHUB_ENV + + - name: Get torch cache path (Windows) + if: runner.os == 'Windows' + id: get_cache_path_windows + run: | + $cachePath = Rscript -e 'cat(rappdirs::user_cache_dir("torch"))' + echo "TORCH_CACHE_PATH=$cachePath" >> $env:GITHUB_ENV + + - name: Cache Torchvision Downloads + uses: actions/cache@v4 + with: + path: ${{ env.TORCH_CACHE_PATH }} + key: ${{ runner.os }}-r-${{ env.TORCHVISION_PACKAGE_VERSION }} + + - uses: r-lib/actions/check-r-package@v2 + + - uses: mxschmitt/action-tmate@v3 + if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} + with: + limit-access-to-actor: true +