diff options
author | Edu Garcia <28616+Arcnor@users.noreply.github.com> | 2021-02-02 11:07:55 +0000 |
---|---|---|
committer | eine <6628437+eine@users.noreply.github.com> | 2021-02-02 16:06:31 +0100 |
commit | f43b05d1df16b6d8faf6ec18ed706b0973578d13 (patch) | |
tree | 6672a2dad2f821178afb0147a3810b6e111b2f27 /.github/workflows | |
parent | 4bf59f00c609d06b814eee88440d0f200872bb9a (diff) | |
download | ghdl-f43b05d1df16b6d8faf6ec18ed706b0973578d13.tar.gz ghdl-f43b05d1df16b6d8faf6ec18ed706b0973578d13.tar.bz2 ghdl-f43b05d1df16b6d8faf6ec18ed706b0973578d13.zip |
ci: enable gnat cache for macos
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/Test.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 5fdf20dca..ed325f508 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -161,6 +161,14 @@ jobs: - name: '🧰 Checkout' uses: actions/checkout@v2 + - name: '💾 Cache gnat' + id: cache-gnat + uses: actions/cache@v2 + with: + path: gnat + key: ${{ runner.os }}-gnat + + # Although we cache this, we let the script run to check if the cache is valid (without conditions) - name: '⚙️ Dependencies (brew)' run: ./scripts/macosx/install-ada.sh |