From 6d0a364cd5e6676b122fc51c0188cba315d84dfe Mon Sep 17 00:00:00 2001 From: "Pavel V. Dimens" Date: Mon, 13 Jul 2020 12:45:31 -0500 Subject: [PATCH 1/3] Delete ci_dev.yml --- .github/workflows/ci_dev.yml | 39 ------------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/ci_dev.yml diff --git a/.github/workflows/ci_dev.yml b/.github/workflows/ci_dev.yml deleted file mode 100644 index 21bb65188..000000000 --- a/.github/workflows/ci_dev.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: CI_dev -on: - pull_request: - branches: [dev] - push: - branches: [dev] -jobs: - test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - version: - - '1.4' - - 'nightly' - os: - - ubuntu-latest - - macOS-latest - - windows-latest - arch: - - x64 - steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 - with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - - uses: actions/cache@v1 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest From f885c6194ec0910e0b6787d411fea76acbedc78c Mon Sep 17 00:00:00 2001 From: "$(ci_cfg.username)" <$(ci_cfg.email)> Date: Tue, 14 Jul 2020 00:25:25 +0000 Subject: [PATCH 2/3] CompatHelper: add new compat entry for "FileIO" at version "1.3" --- Project.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e8e1a1da8..de49034e9 100644 --- a/Project.toml +++ b/Project.toml @@ -16,10 +16,11 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" [compat] +FileIO = "1.3" julia = "1.3.1" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["Test"] \ No newline at end of file +test = ["Test"] From 0685d4ffb3df4b0f96635f8de205a4daa02cc156 Mon Sep 17 00:00:00 2001 From: "Pavel V. Dimens" Date: Tue, 14 Jul 2020 14:02:25 -0500 Subject: [PATCH 3/3] Update CompatHelper.yml --- .github/workflows/CompatHelper.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index 58959121a..272a70708 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -9,7 +9,7 @@ jobs: - name: Pkg.add("CompatHelper") run: julia -e 'using Pkg; Pkg.add("CompatHelper")' - name: CompatHelper.main() - run: julia -e 'using CompatHelper; CompatHelper.main()' + run: julia -e 'using CompatHelper; CompatHelper.main(; master_branch = "dev")' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}