Skip to content

Commit 2ddb8aa

Browse files
committed
build(tag.yml): rm conda build test
1 parent 897b4d4 commit 2ddb8aa

2 files changed

Lines changed: 3 additions & 63 deletions

File tree

.github/workflows/tag.yml

Lines changed: 3 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -7,78 +7,19 @@ on:
77
- stable
88
paths:
99
- '**.py'
10-
- 'rr_cache/data/**'
1110
- '!tests/**'
1211

1312

1413
jobs:
1514

16-
Build-Recipe:
17-
runs-on: ubuntu-latest
18-
steps:
19-
- uses: actions/checkout@v2
20-
- name: Installing make
21-
run: |
22-
sudo apt-get update
23-
sudo apt-get -y install make
24-
- name: Checkout CI/CD Toolkit
25-
uses: actions/checkout@v2
26-
with:
27-
repository: breakthewall/cicd-toolkit
28-
path: cicd-toolkit
29-
persist-credentials: false
30-
fetch-depth: 0
31-
- name: Building recipe
32-
run: |
33-
cd cicd-toolkit
34-
make -C makefiles -f conda.mk build-recipe
35-
- name: Saving recipe
36-
uses: actions/upload-artifact@v4
37-
with:
38-
name: recipe
39-
path: cicd-toolkit/recipe/meta.yaml
40-
41-
Conda-Build:
42-
needs: [Build-Recipe]
43-
runs-on: ${{ matrix.os }}-latest
44-
strategy:
45-
matrix:
46-
os: ["ubuntu", "windows", "macos"]
47-
defaults:
48-
run:
49-
shell: bash -l {0}
50-
steps:
51-
- uses: actions/checkout@v2
52-
- name: Checkout CI/CD Toolkit
53-
uses: actions/checkout@v2
54-
with:
55-
repository: breakthewall/cicd-toolkit
56-
path: cicd-toolkit
57-
persist-credentials: false
58-
fetch-depth: 0
59-
- name: Loading recipe
60-
uses: actions/download-artifact@v4
61-
with:
62-
name: recipe
63-
path: cicd-toolkit/recipe
64-
- name: Deploying miniconda
65-
uses: conda-incubator/setup-miniconda@v2
66-
with:
67-
miniconda-version: "latest"
68-
environment-file: cicd-toolkit/recipe/conda_build_env.yaml
69-
activate-environment: test
70-
- name: Building & Testing conda package
71-
run: |
72-
conda-build cicd-toolkit/recipe
73-
7415
Tag:
75-
needs: [Conda-Build]
16+
# needs: [Conda-Build]
7617
runs-on: ubuntu-latest
7718
outputs: # Create variable usable from another job
7819
new_tag: ${{ steps.tag_version.outputs.new_tag }}
7920
steps:
8021
## CREATE TAG/RELEASE
81-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
8223
with:
8324
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
8425
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
@@ -98,7 +39,7 @@ jobs:
9839
env:
9940
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10041
## UPDATE CHANGELOG
101-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
10243
with:
10344
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
10445
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.

rr_cache/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from typing import (
2121
List,
2222
)
23-
2423
from .Args import CONFIG_PATH
2524

2625

0 commit comments

Comments
 (0)