mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Fix CI cache (#92)
it didn't work so far because you can't use variable in the path...
This commit is contained in:
49
.github/workflows/test-devel.yml
vendored
49
.github/workflows/test-devel.yml
vendored
@ -8,6 +8,15 @@ jobs:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Create directories
|
||||
run: cd ~/; mkdir -p .local/ go/
|
||||
- name: Cache Anope
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: 3-${{ runner.os }}-anope-2.0.9
|
||||
path: '~/.cache
|
||||
|
||||
${{ github.workspace }}/anope
|
||||
|
||||
'
|
||||
- name: Checkout Anope
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
@ -37,10 +46,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-hybrid-devel
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/ircd-hybrid
|
||||
key: 3-${{ runner.os }}-hybrid-devel
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/ircd-hybrid
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
@ -105,10 +116,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-plexus4-devel
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/placeholder
|
||||
key: 3-${{ runner.os }}-plexus4-devel
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/placeholder
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
@ -145,10 +158,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-solanum-devel
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/solanum
|
||||
key: 3-${{ runner.os }}-solanum-devel
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/solanum
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
@ -183,10 +198,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-unrealircd-devel
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/unrealircd
|
||||
key: 3-${{ runner.os }}-unrealircd-devel
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/unrealircd
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
|
9
.github/workflows/test-devel_release.yml
vendored
9
.github/workflows/test-devel_release.yml
vendored
@ -8,6 +8,15 @@ jobs:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Create directories
|
||||
run: cd ~/; mkdir -p .local/ go/
|
||||
- name: Cache Anope
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: 3-${{ runner.os }}-anope-2.0.9
|
||||
path: '~/.cache
|
||||
|
||||
${{ github.workspace }}/anope
|
||||
|
||||
'
|
||||
- name: Checkout Anope
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
|
59
.github/workflows/test-stable.yml
vendored
59
.github/workflows/test-stable.yml
vendored
@ -8,6 +8,15 @@ jobs:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Create directories
|
||||
run: cd ~/; mkdir -p .local/ go/
|
||||
- name: Cache Anope
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: 3-${{ runner.os }}-anope-2.0.9
|
||||
path: '~/.cache
|
||||
|
||||
${{ github.workspace }}/anope
|
||||
|
||||
'
|
||||
- name: Checkout Anope
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
@ -37,10 +46,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-charybdis-stable
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/charybdis
|
||||
key: 3-${{ runner.os }}-charybdis-stable
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/charybdis
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
@ -75,10 +86,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-hybrid-stable
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/ircd-hybrid
|
||||
key: 3-${{ runner.os }}-hybrid-stable
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/ircd-hybrid
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
@ -143,10 +156,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-plexus4-stable
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/placeholder
|
||||
key: 3-${{ runner.os }}-plexus4-stable
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/placeholder
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
@ -183,10 +198,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-solanum-stable
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/solanum
|
||||
key: 3-${{ runner.os }}-solanum-stable
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/solanum
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
@ -221,10 +238,12 @@ jobs:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-unrealircd-stable
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/unrealircd
|
||||
key: 3-${{ runner.os }}-unrealircd-stable
|
||||
path: '~/.cache
|
||||
|
||||
${ github.workspace }/unrealircd
|
||||
|
||||
'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
|
Reference in New Issue
Block a user