CI triggered from @ImJeremyHe of #529
Workflow file for this run
This file contains hidden or 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: Migration Test | |
| run-name: CI triggered from @${{ github.actor }} of ${{ github.head_ref }} | |
| on: | |
| workflow_dispatch: | |
| merge_group: | |
| push: | |
| schedule: | |
| # Run at the end of every day | |
| - cron: "0 0 * * *" | |
| # Cancel in-progress jobs except for integration branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ !contains(github.ref, 'integration/')}} | |
| jobs: | |
| migration_test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v30 | |
| - name: Enable Cachix | |
| uses: cachix/cachix-action@v15 | |
| continue-on-error: true | |
| with: | |
| name: espresso-systems-private | |
| authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
| extraPullNames: nix-community | |
| skipPush: ${{ github.actor == 'dependabot[bot]' }} | |
| - name: Migration Test | |
| run: | | |
| nix develop --accept-flake-config --option sandbox relaxed \ | |
| -c espresso-tests/migration-test.bash | |
| timeout-minutes: 45 | |
| migtation-test-v3: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v30 | |
| - name: Enable Cachix | |
| uses: cachix/cachix-action@v15 | |
| continue-on-error: true | |
| with: | |
| name: espresso-systems-private | |
| authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
| extraPullNames: nix-community | |
| skipPush: ${{ github.actor == 'dependabot[bot]' }} | |
| - name: Migration Test v3.1.0 | |
| env: | |
| VERSION: "3" | |
| run: | | |
| nix develop --accept-flake-config --option sandbox relaxed \ | |
| -c espresso-tests/migration-test.bash | |
| timeout-minutes: 45 | |
| upgrade-test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v30 | |
| - name: Enable Cachix | |
| uses: cachix/cachix-action@v15 | |
| continue-on-error: true | |
| with: | |
| name: espresso-systems-private | |
| authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
| extraPullNames: nix-community | |
| skipPush: ${{ github.actor == 'dependabot[bot]' }} | |
| - name: Upgrade Test v2.1.3 to v3.1.0 | |
| run: | | |
| nix develop --accept-flake-config --option sandbox relaxed \ | |
| -c espresso-tests/upgrade-test/upgrade-test.bash | |
| timeout-minutes: 45 |