diff --git a/.github/workflows/snapshot-on-push-master.yml b/.github/workflows/snapshot-on-push-master.yml index 893935a821..571947c9bd 100644 --- a/.github/workflows/snapshot-on-push-master.yml +++ b/.github/workflows/snapshot-on-push-master.yml @@ -10,7 +10,7 @@ concurrency: jobs: build_windows: name: Build (Windows) - if: github.repository == 'colinleroy/cc65' + if: github.repository == 'cc65/cc65' runs-on: windows-latest steps: @@ -29,14 +29,9 @@ jobs: - name: Build app (release) run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release - - name: Run the regression tests (make test) - if: steps.check-sha.outputs.cache-hit != 'true' - shell: cmd - run: make test SHELL=cmd - build_linux: name: Build, Test, and Snapshot (Linux) - if: github.repository == 'colinleroy/cc65' + if: github.repository == 'cc65/cc65' runs-on: ubuntu-latest steps: diff --git a/.github/workflows/windows-test-scheduled.yml b/.github/workflows/windows-test-scheduled.yml index 451b37f792..6c82be3402 100644 --- a/.github/workflows/windows-test-scheduled.yml +++ b/.github/workflows/windows-test-scheduled.yml @@ -2,11 +2,9 @@ name: Windows Test Scheduled # Scheduled or manually dispatched because it's slower than the Linux test. on: - schedule: - - cron: '0 0 */1 * *' - # every 1 days - workflow_dispatch: - # allow manual dispatch + push: + branches: + master concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true