feat: enable chisel #3655
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spread Tests | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout snapcraft | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build snapcraft snap | |
id: build-snapcraft | |
uses: snapcore/action-build@v1 | |
- name: Upload snapcraft snap | |
uses: actions/upload-artifact@v3 | |
with: | |
name: snap | |
path: ${{ steps.build-snapcraft.outputs.snap }} | |
- name: Verify snapcraft snap | |
run: | | |
sudo snap install --dangerous --classic ${{ steps.build-snapcraft.outputs.snap }} | |
integration-spread-tests: | |
runs-on: self-hosted | |
needs: build | |
strategy: | |
# FIXME: enable fail-fast mode once spread can cancel an executing job. | |
# Disable fail-fast mode as it doesn't function with spread. It seems | |
# that cancelling tasks requires short, interruptible actions and | |
# interrupting spread, notably, does not work today. As such disable | |
# fail-fast while we tackle that problem upstream. | |
fail-fast: false | |
matrix: | |
spread-jobs: | |
- google:ubuntu-20.04-64 | |
- google:ubuntu-22.04-64 | |
steps: | |
- name: Checkout snapcraft | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Download snapcraft snap | |
uses: actions/download-artifact@v3 | |
with: | |
name: snap | |
path: tests | |
- name: Run spread | |
env: | |
SPREAD_GOOGLE_KEY: ${{ secrets.SPREAD_GOOGLE_KEY }} | |
UA_TOKEN: ${{ secrets.UA_TOKEN }} | |
run: spread ${{ matrix.spread-jobs }} | |
- name: Discard spread workers | |
if: always() | |
run: | | |
shopt -s nullglob | |
for r in .spread-reuse.*.yaml; do | |
spread -discard -reuse-pid="$(echo "$r" | grep -o -E '[0-9]+')" | |
done | |
integration-spread-tests-store: | |
runs-on: self-hosted | |
needs: build | |
strategy: | |
# FIXME: enable fail-fast mode once spread can cancel an executing job. | |
# Disable fail-fast mode as it doesn't function with spread. It seems | |
# that cancelling tasks requires short, interruptible actions and | |
# interrupting spread, notably, does not work today. As such disable | |
# fail-fast while we tackle that problem upstream. | |
fail-fast: false | |
steps: | |
- name: Decision to Run | |
id: decisions | |
run: | | |
# Secrets cannot be used in conditionals, so this is our dance: | |
# https://github.com/actions/runner/issues/520 | |
if [[ -n "${{ secrets.SNAPCRAFT_STORE_CREDENTIALS_STAGING }}" ]]; then | |
echo RUN=true >> $GITHUB_OUTPUT | |
else | |
echo RUN= >> $GITHUB_OUTPUT | |
fi | |
- if: steps.decisions.outputs.RUN == 'true' | |
name: Checkout snapcraft | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- if: steps.decisions.outputs.RUN == 'true' | |
name: Download snapcraft snap | |
uses: actions/download-artifact@v3 | |
with: | |
name: snap | |
path: tests | |
- if: steps.decisions.outputs.RUN == 'true' | |
name: Run spread | |
env: | |
SPREAD_GOOGLE_KEY: ${{ secrets.SPREAD_GOOGLE_KEY }} | |
SNAPCRAFT_STORE_CREDENTIALS_STAGING: "${{ secrets.SNAPCRAFT_STORE_CREDENTIALS_STAGING }}" | |
SNAPCRAFT_STORE_CREDENTIALS_STAGING_CANDID: "${{ secrets.SNAPCRAFT_STORE_CREDENTIALS_STAGING_CANDID }}" | |
SNAPCRAFT_STORE_CREDENTIALS_STAGING_LEGACY: "${{ secrets.SNAPCRAFT_STORE_CREDENTIALS_STAGING_LEGACY }}" | |
run: spread google:ubuntu-22.04-64:tests/spread/general/store | |
- name: Discard spread workers | |
if: always() | |
run: | | |
shopt -s nullglob | |
for r in .spread-reuse.*.yaml; do | |
spread -discard -reuse-pid="$(echo "$r" | grep -o -E '[0-9]+')" | |
done |