diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2023-01-02 17:16:51 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2023-01-02 17:16:51 +0100 |
commit | a935752df663ed6fe6b5ea4aad302810f24fc22d (patch) | |
tree | 121cd3c50100347f44f2ce3fb7e7e906159fae65 | |
parent | fcd1c68ab77d712241b21d0934de00c446eb93b4 (diff) | |
download | yosys-a935752df663ed6fe6b5ea4aad302810f24fc22d.tar.gz yosys-a935752df663ed6fe6b5ea4aad302810f24fc22d.tar.bz2 yosys-a935752df663ed6fe6b5ea4aad302810f24fc22d.zip |
Remove cache
-rw-r--r-- | .github/workflows/emcc.yml | 6 | ||||
-rw-r--r-- | .github/workflows/vs.yml | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/.github/workflows/emcc.yml b/.github/workflows/emcc.yml index 7a9a6064f..295d9554b 100644 --- a/.github/workflows/emcc.yml +++ b/.github/workflows/emcc.yml @@ -8,12 +8,6 @@ jobs: steps: - uses: mymindstorm/setup-emsdk@v11 - uses: actions/checkout@v3 - - name: Cache sources - id: cache-sources - uses: actions/cache@v3 - with: - path: . - key: cache-yosys - name: Build run: | make config-emcc diff --git a/.github/workflows/vs.yml b/.github/workflows/vs.yml index 744ad5677..428770e72 100644 --- a/.github/workflows/vs.yml +++ b/.github/workflows/vs.yml @@ -7,12 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Cache sources - id: cache-sources - uses: actions/cache@v3 - with: - path: . - key: cache-yosys - name: Build run: make vcxsrc YOSYS_VER=latest - uses: actions/upload-artifact@v3 |