summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kuryloski <kuryloskip@vmware.com>2022-01-18 13:48:05 +0100
committerPhilip Kuryloski <kuryloskip@vmware.com>2022-01-18 13:48:05 +0100
commitc2e9abfae8b08370bf283c2bcaa53b231220063f (patch)
treebaa483ea4a6e494b77bdfe9b6302fd6b359405c2
parentefcd88165800d6603bda7d9bbcc34ef63e0bcf6f (diff)
downloadrabbitmq-server-git-c2e9abfae8b08370bf283c2bcaa53b231220063f.tar.gz
Remove the windows workflow for now
Mix does not seem to play well with symlinks in the github actions worker. The issue does not occur on my local vm.
-rw-r--r--.github/workflows/test-windows.yaml65
1 files changed, 0 insertions, 65 deletions
diff --git a/.github/workflows/test-windows.yaml b/.github/workflows/test-windows.yaml
deleted file mode 100644
index f7db4d2be0..0000000000
--- a/.github/workflows/test-windows.yaml
+++ /dev/null
@@ -1,65 +0,0 @@
-name: Test Windows
-on:
- push:
- paths:
- - 'deps/**'
- - 'scripts/**'
- - Makefile
- - plugins.mk
- - rabbitmq-components.mk
- - .bazelrc
- - .bazelversion
- - BUILD.*
- - '*.bzl'
- - '*.bazel'
- - .github/workflows/test-windows.yaml
-jobs:
- test:
- name: Test Windows
- runs-on: windows-latest
- strategy:
- fail-fast: false
- matrix:
- erlang_version:
- #! - "23"
- - "24"
- timeout-minutes: 120
- steps:
- - name: CHECKOUT REPOSITORY
- uses: actions/checkout@v2.4.0
- - name: CONFIGURE ERLANG
- uses: erlef/setup-beam@v1
- with:
- otp-version: ${{ matrix.erlang_version }}
- elixir-version: 1.12.3
- #! - name: MOUNT BAZEL CACHE
- #! uses: actions/cache@v1
- #! with:
- #! path: "/home/runner/repo-cache/"
- #! key: repo-cache
- - name: CONFIGURE BAZEL
- shell: bash
- run: |
- ERL_PATH="$(which erl)"
- IEX_PATH="$(which iex)"
- cat << EOF >> user.bazelrc
- startup --windows_enable_symlinks
- build --enable_runfiles
-
- build:buildbuddy --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_API_KEY }}
-
- build:buildbuddy --build_metadata=ROLE=CI
- build:buildbuddy --build_metadata=VISIBILITY=PUBLIC
- build:buildbuddy --remote_instance_name=buildbuddy-io/buildbuddy/ci-windows-${{ matrix.erlang_version }}
- # build:buildbuddy --repository_cache=/home/runner/repo-cache/
- build:buildbuddy --color=yes
- build:buildbuddy --disk_cache=
-
- build --@rules_erlang//:erlang_version=${{ matrix.erlang_version }}
- build --@rules_erlang//:erlang_home="${ERL_PATH/\/bin\/erl/}"
- build --//:elixir_home="${IEX_PATH/\/bin\/iex/}"
- EOF
-
- bazelisk info release
- - name: RUN TESTS
- run: bazelisk test //... --config=buildbuddy --test_tag_filters=-exclusive,-aws,-bats,-starts-background-broker --build_tests_only --verbose_failures