@@ -23,44 +23,44 @@ jobs:
23
23
- uses : actions/checkout@v2
24
24
- run : bazelisk build voidstar
25
25
26
- build_on_windows :
27
- name : Build on windows
28
- runs-on : windows-latest
29
- steps :
30
- - uses : actions/checkout@v2
26
+ # build_on_windows: FIXME
27
+ # name: Build on windows
28
+ # runs-on: windows-latest
29
+ # steps:
30
+ # - uses: actions/checkout@v2
31
31
32
- # Trying to install & use GCC
33
- # From https://github.com/onqtam/doctest/pull/285/files
34
- - name : Install (Windows)
35
- shell : powershell
36
- run : |
37
- Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
38
- scoop install ninja --global
39
- #if ("${{ matrix.compiler }}".StartsWith("clang")) {
40
- # scoop install llvm --global
41
- #}
42
- #if ("${{ matrix.compiler }}" -eq "gcc") {
43
- # Chocolatey GCC is broken on the windows-2019 image.
44
- # See: https://github.com/DaanDeMeyer/doctest/runs/231595515
45
- # See: https://github.community/t5/GitHub-Actions/Something-is-wrong-with-the-chocolatey-installed-version-of-gcc/td-p/32413
46
- scoop install gcc --global
47
- echo "::set-env name=CC::gcc"
48
- echo "::set-env name=CXX::g++"
49
- #} elseif ("${{ matrix.compiler }}" -eq "clang") {
50
- # echo "::set-env name=CC::clang"
51
- # echo "::set-env name=CXX::clang++"
52
- #} else {
53
- # echo "::set-env name=CC::${{ matrix.compiler }}"
54
- # echo "::set-env name=CXX::${{ matrix.compiler }}"
55
- #}
56
- # Scoop modifies the PATH so we make the modified PATH global.
57
- echo "::set-env name=PATH::$env:PATH"
58
- - name : Configure x64
59
- run : .github\workflows\vsenv.bat -arch=x64 -host_arch=x64
32
+ # # Trying to install & use GCC
33
+ # # From https://github.com/onqtam/doctest/pull/285/files
34
+ # - name: Install (Windows)
35
+ # shell: powershell
36
+ # run: |
37
+ # Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
38
+ # scoop install ninja --global
39
+ # #if ("${{ matrix.compiler }}".StartsWith("clang")) {
40
+ # # scoop install llvm --global
41
+ # #}
42
+ # #if ("${{ matrix.compiler }}" -eq "gcc") {
43
+ # # Chocolatey GCC is broken on the windows-2019 image.
44
+ # # See: https://github.com/DaanDeMeyer/doctest/runs/231595515
45
+ # # See: https://github.community/t5/GitHub-Actions/Something-is-wrong-with-the-chocolatey-installed-version-of-gcc/td-p/32413
46
+ # scoop install gcc --global
47
+ # echo "::set-env name=CC::gcc"
48
+ # echo "::set-env name=CXX::g++"
49
+ # #} elseif ("${{ matrix.compiler }}" -eq "clang") {
50
+ # # echo "::set-env name=CC::clang"
51
+ # # echo "::set-env name=CXX::clang++"
52
+ # #} else {
53
+ # # echo "::set-env name=CC::${{ matrix.compiler }}"
54
+ # # echo "::set-env name=CXX::${{ matrix.compiler }}"
55
+ # #}
56
+ # # Scoop modifies the PATH so we make the modified PATH global.
57
+ # echo "::set-env name=PATH::$env:PATH"
58
+ # - name: Configure x64
59
+ # run: .github\workflows\vsenv.bat -arch=x64 -host_arch=x64
60
60
61
- - shell : bash
62
- run : |
63
- gcc --version || true
64
- clang --version || true
61
+ # - shell: bash
62
+ # run: |
63
+ # gcc --version || true
64
+ # clang --version || true
65
65
66
- - run : bazelisk build voidstar
66
+ # - run: bazelisk build voidstar
0 commit comments