From 4e9eabe7bf97c7657b4691d11c7db62f4c679ca5 Mon Sep 17 00:00:00 2001 From: Alexander Koz Date: Wed, 13 Sep 2023 04:15:13 +0400 Subject: [PATCH] add input and test --- .github/workflows/tests.yml | 4 +++- action.yml | 41 ++++++++----------------------------- 2 files changed, 12 insertions(+), 33 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b5c7ce8..bd8aeee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ on: jobs: tests: - name: ${{ matrix.version }} on ${{ matrix.os }} + name: ${{ matrix.version }} on ${{ matrix.os }} ${{ matrix.cache && '(cache)' }} runs-on: ${{ matrix.os }} defaults: run: @@ -24,6 +24,7 @@ jobs: version: - latest # actual version - 2.0.0 # specified version + cache: [true, false] steps: - uses: actions/checkout@v3 @@ -32,6 +33,7 @@ jobs: uses: ./ with: version: ${{ matrix.version }} + cache: ${{ matrix.cache }} - name: outputs run: | diff --git a/action.yml b/action.yml index c0281ab..5210e63 100644 --- a/action.yml +++ b/action.yml @@ -9,6 +9,10 @@ inputs: default: latest description: SDK version (ex. `2.0.0` or default `latest`). required: false + cache: + default: 'true' + description: Cache installer. + required: false # path: # default: default # description: SDK installation path. Optional. @@ -55,23 +59,24 @@ runs: echo "url=$DIRECT_URL" >> $GITHUB_OUTPUT - name: Cache restore + if: (runner.os != 'Windows') && (inputs.cache == 'true') uses: actions/cache/restore@v3 - # TODO: if: inputs.cache id: cache-restore with: path: ${{ steps.cfg.outputs.filename }} key: ${{ runner.os }}-${{ steps.direct-url.outputs.url }} - name: download - if: steps.cache-restore.outputs.cache-hit != 'true' + # not using cache or get cache-miss and not windows + if: (runner.os != 'Windows') && ((steps.cache-restore.outputs.cache-hit != 'true') || (inputs.cache != 'true')) shell: bash run: | curl -L -sS --show-error --fail "${{ steps.direct-url.outputs.url }}" -o ${{ steps.cfg.outputs.filename }} - # TODO: move it after successful installation? - name: Cache save id: cache-save - # if: steps.cache-restore.outputs.cache-hit != 'true' + # not windows and cache-miss and using cache + if: (runner.os != 'Windows') && (steps.cache-restore.outputs.cache-hit != 'true') && (inputs.cache == 'true') uses: actions/cache/save@v3 with: path: ${{ steps.cfg.outputs.filename }} @@ -101,40 +106,12 @@ runs: echo "PLAYDATE_SDK_PATH=$PWD" >> $GITHUB_ENV echo "$PWD/bin" >> $GITHUB_PATH - # OLD PART - # - name: download pkg - # if: runner.os == 'macOS' - # shell: bash - # run: | - # curl -L -sS --show-error --fail "https://download.panic.com/playdate_sdk/PlaydateSDK-${{ inputs.version }}.zip" -o sdk.zip - # unzip sdk.zip - # sudo installer -store -pkg "PlaydateSDK.pkg" -target / - # cat ~/.Playdate/config - # echo "root: $PLAYDATE_SDK_PATH" - # PLAYDATE_SDK_PATH="$(grep -E '^\s*SDKRoot' ~/.Playdate/config | head -n 1 | awk '{print $2}')" - # echo "PLAYDATE_SDK_PATH=$PLAYDATE_SDK_PATH" >> $GITHUB_ENV - - name: install gnu-arm-gcc if: runner.os == 'Linux' shell: bash run: | sudo apt install -y gcc-arm-none-eabi - # - name: download tar.gz - # if: runner.os == 'Linux' - # shell: bash - # run: | - # cd "${{ github.action_path }}" - # curl -L -sS --show-error --fail "https://download.panic.com/playdate_sdk/Linux/PlaydateSDK-${{ inputs.version }}.tar.gz" -o sdk.tar.gz - # mkdir _pd-sdk - # tar -zxf sdk.tar.gz -C _pd-sdk - # cd _pd-sdk/*/ - # # TODO: fix permissions: - # # sudo chown runner setup.sh && chmod +x setup.sh - # sudo ./setup.sh || true - # echo "PLAYDATE_SDK_PATH=$PWD" >> $GITHUB_ENV - # echo "$PWD/bin" >> $GITHUB_PATH - - name: install gnu-arm-gcc if: runner.os == 'Windows' shell: powershell