From d70dc4b724a3172b79116515e996dea58d6259a1 Mon Sep 17 00:00:00 2001 From: Julius Krumbiegel Date: Mon, 25 Mar 2024 14:53:15 +0100 Subject: [PATCH] remove pumas ci stuff, bump versions --- .github/workflows/CI.yml | 13 +++---------- .github/workflows/CompatHelper.yml | 13 +------------ .github/workflows/documentation.yml | 9 +-------- Project.toml | 6 +++--- 4 files changed, 8 insertions(+), 33 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 23e3402..44fdbd8 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 10 needs: [test] if: always() - runs-on: [based-on-debian, self-hosted, linux, x64] + runs-on: ubuntu-latest steps: - run: | echo test: ${{ needs.test.result }} @@ -28,8 +28,6 @@ jobs: (needs.test.result != 'success') test: - env: - JULIA_PKG_SERVER: ${{ secrets.JULIA_PKG_SERVER }} runs-on: ${{ matrix.os }} timeout-minutes: 60 strategy: @@ -37,8 +35,8 @@ jobs: version: - '1' os: - - [based-on-debian, self-hosted, linux, x64] - - [windows, x64, inside-docker, self-hosted] + - ubuntu-latest + - windows-latest arch: - x64 steps: @@ -49,10 +47,5 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: PumasAI/add-private-registry@9e7f77818be0d19044e5e752205b6ded86af2cb8 - with: - juliahub_token_encoded: ${{ secrets.JULIAPRO_TOKEN_ENCODED }} - private_registry_name: ${{ secrets.PUMASREGISTRY_NAME }} - private_registry_uuid: ${{ secrets.PUMASREGISTRY_UUID }} - uses: julia-actions/julia-buildpkg@00f9fd6b2600be0a8d80566dd4d4d2389b3468eb - uses: julia-actions/julia-runtest@79a7e100883947123f8263c5f06e6c0ea3eb972f diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index 06791f1..84b18cc 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -8,24 +8,13 @@ permissions: contents: write pull-requests: write -env: - JULIA_PKG_SERVER: ${{ secrets.JULIA_PKG_SERVER }} - jobs: CompatHelper: - runs-on: [based-on-debian, self-hosted, linux, x64] + runs-on: ubuntu-latest steps: - uses: julia-actions/setup-julia@f40c4b69330df1d22e7590c12e76dc2f9c66e0bc with: version: '1.9' - - - name: Add the Pumas Registry - uses: PumasAI/add-private-registry@93e0d6c748c851aabfeac9f27e5c6d211a05dc33 - with: - juliahub_token_encoded: ${{ secrets.JULIAPRO_TOKEN_ENCODED }} - private_registry_name: ${{ secrets.PUMASREGISTRY_NAME }} - private_registry_uuid: ${{ secrets.PUMASREGISTRY_UUID }} - - name: "Install CompatHelper" run: | import Pkg diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 7bb9010..6e50840 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -16,25 +16,18 @@ concurrency: jobs: build: - env: - JULIA_PKG_SERVER: ${{ secrets.JULIA_PKG_SERVER }} permissions: contents: write statuses: write pages: write # to deploy to Pages id-token: write # to verify the deployment originates from an appropriate source pull-requests: write - runs-on: [based-on-debian, self-hosted, linux, x64] + runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - uses: julia-actions/setup-julia@f40c4b69330df1d22e7590c12e76dc2f9c66e0bc with: version: '1' - - uses: PumasAI/add-private-registry@9e7f77818be0d19044e5e752205b6ded86af2cb8 - with: - juliahub_token_encoded: ${{ secrets.JULIAPRO_TOKEN_ENCODED }} - private_registry_name: ${{ secrets.PUMASREGISTRY_NAME }} - private_registry_uuid: ${{ secrets.PUMASREGISTRY_UUID }} - name: Install dependencies run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' - name: Build and deploy diff --git a/Project.toml b/Project.toml index de4d19b..8f9231b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SummaryTables" uuid = "6ce4ecf0-73a7-4ce3-9fb4-80ebfe887b60" -authors = ["Mike ", "Julius "] -version = "0.9.6" +authors = ["Julius ", "Mike "] +version = "1.0.0" [deps] CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597" @@ -30,5 +30,5 @@ SHA = "0.7" Statistics = "1" StatsBase = "0.33, 0.34" Tables = "1" -WriteDocx = "0.5" +WriteDocx = "1" julia = "1.7"