aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2025-09-02 00:07:18 +0200
committerselsta <selsta@sent.at>2025-09-02 00:14:10 +0200
commit76416d9133cbaafb96920ad752019c3b31d6dbb2 (patch)
tree5cb181965a46d12402db670069f098c3f4b2860c /.github
parentc89f8eca9155473105519c37e706753214534e2a (diff)
downloadmonzero-gui-76416d9133cbaafb96920ad752019c3b31d6dbb2.tar.gz
monzero-gui-76416d9133cbaafb96920ad752019c3b31d6dbb2.tar.xz
monzero-gui-76416d9133cbaafb96920ad752019c3b31d6dbb2.zip
workflows: remove unmaintained docker caching action
Does not work anymore. Action hasn't been updated since 2020. There's a fork but it also appears unmaintained.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index deb82b41..85e48bf0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -104,13 +104,6 @@ jobs:
- uses: actions/checkout@v1
with:
submodules: recursive
- - uses: satackey/action-docker-layer-caching@v0.0.11
- if: "!startsWith(github.ref, 'refs/tags/v')"
- continue-on-error: true
- with:
- key: docker-linux-static-{hash}
- restore-keys: |
- docker-linux-static-
- name: install dependencies
run: sudo apt -y install xvfb libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xkb1 libxcb-shape0 libxkbcommon-x11-0
- name: free up diskspace
@@ -136,13 +129,6 @@ jobs:
- uses: actions/checkout@v1
with:
submodules: recursive
- - uses: satackey/action-docker-layer-caching@v0.0.11
- if: "!startsWith(github.ref, 'refs/tags/v')"
- continue-on-error: true
- with:
- key: docker-windows-static-{hash}
- restore-keys: |
- docker-windows-static-
- name: free up diskspace
run: ${{env.FREE_DISKSPACE}}
- name: prepare build environment
@@ -164,21 +150,12 @@ jobs:
- uses: actions/checkout@v1
with:
submodules: recursive
- - uses: satackey/action-docker-layer-caching@v0.0.11
- if: "!startsWith(github.ref, 'refs/tags/v')"
- continue-on-error: true
- with:
- key: docker-android-static-{hash}
- restore-keys: |
- docker-android-static-
- name: free up diskspace
run: ${{env.FREE_DISKSPACE}}
- name: prepare build environment
run: docker build --tag monero:build-env-android --build-arg THREADS=3 --file Dockerfile.android .
- name: build
run: docker run --rm -v /home/runner/work/monero-gui/monero-gui:/monero-gui -e THREADS=3 monero:build-env-android
- - name: Remove obsolete docker layers
- run: docker images -a | grep none | awk '{ print $3; }' | xargs docker rmi || true
- uses: actions/upload-artifact@v4
with:
name: ${{ github.job }}