summaryrefslogtreecommitdiff
path: root/.github/workflows/test_sifter.yml
blob: 4b88072223304c3f886b5adc59c7abb5a1ee483f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Adapted from: https://github.com/pubref/rules_protobuf/blob/master/.travis.yml
name: Test Sifter

on: pull_request

jobs:
  test-sifter:
    runs-on: [ubuntu-18.04]
    steps:
    - uses: actions/checkout@v1
    - name: Build and test Sifter.
      run: |
        V=3.7.0
        OS=linux
        ARCH=x86_64
        GH_BASE="https://github.com/bazelbuild/bazel/releases/download/$V"
        GH_ARTIFACT="bazel-$V-installer-$OS-$ARCH.sh"
        CI_BASE="http://ci.bazel.io/job/Bazel/JAVA_VERSION=1.8,PLATFORM_NAME=$OS-$ARCH/lastSuccessfulBuild/artifact/output/ci"
        CI_ARTIFACT="bazel--installer.sh"
        URL="$GH_BASE/$GH_ARTIFACT"
        echo $URL
        wget -O install.sh $URL
        chmod +x install.sh
        ./install.sh --user
        rm -f install.sh
        git clone https://github.com/95616ARG/bazel_python.git
        cd bazel_python
        echo y | ./setup_python.sh 3.7.4 $HOME/.bazel_python
        cd .. && rm -rf bazel_python
        /home/runner/bin/bazel test //...
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback