From edd6649b80f5ec9403472c45bf9d1735228c2ba5 Mon Sep 17 00:00:00 2001 From: jakebolewski Date: Fri, 19 Jun 2020 16:51:55 -0600 Subject: [PATCH] WIP --- .github/workflows/Tests.yml | 11 +++++------ Dockerfile | 6 ------ bors.toml | 2 +- 3 files changed, 6 insertions(+), 13 deletions(-) delete mode 100644 Dockerfile diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 834cd1bdd..aca80637f 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} @@ -31,9 +31,8 @@ jobs: version: 1.4 - name: Install Julia Project Packages - # we add this ENV varaible to force PyCall to use conda rather than - # the environment python (default on Linux) - # see the PyCall documentation + # we add this ENV varaible to force PyCall to download and use Conda rather than + # the system python (default on Linux), see the PyCall documentation env: PYTHON: "" run: | @@ -56,10 +55,10 @@ jobs: julia --project=@. -e 'using Pkg; Pkg.add("Coverage"); using Coverage; LCOV.writefile("coverage-lcov.info", Codecov.process_folder())' - if: success() + if: ${{ success() && matrix.os == 'ubuntu-latest' }} - name: Submit coverage uses: codecov/codecov-action@v1.0.7 with: token: ${{secrets.CODECOV_TOKEN}} - if: success() + if: ${{ success() && matrix.os == 'ubuntu-latest'}} diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 61b17ded6..000000000 --- a/Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM julia:1.3 - -COPY . /CalibrateEmulateSample.jl/ - -WORKDIR /CalibrateEmulateSample.jl/ -RUN julia --project -e "using Pkg; Pkg.instantiate();" diff --git a/bors.toml b/bors.toml index 0c5f6ac5f..3997d136d 100644 --- a/bors.toml +++ b/bors.toml @@ -1,7 +1,7 @@ status = [ "test (ubuntu-latest)', 'test (windows-latest)', - 'test (macos-latest'), + 'test (macos-latest') ] delete_merged_branches = true timeout_sec = 3600