Skip to content

Commit

Permalink
Do a full CI run
Browse files Browse the repository at this point in the history
  • Loading branch information
madsmtm committed Jan 11, 2023
1 parent 4df93f0 commit ec2406c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:
run: cargo run --features=run --bin=test-assembly -- --target=x86_64-apple-darwin

- name: Run all assembly tests
if: ${{ env.FULL }}
# if: ${{ env.FULL }}
run: ./helper-scripts/run-assembly-tests.sh

header-translator:
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
check-icrate-features:
# if: ${{ env.FULL }}
# This will take ~40 minutes
if: ${{ github.ref_name == 'new-versions' || github.ref_name == 'ci-full' }}
# if: ${{ github.ref_name == 'new-versions' || github.ref_name == 'ci-full' }}
name: Check icrate features
runs-on: macos-12
needs:
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:

test-apple:
# if: ${{ env.FULL }}
if: ${{ github.ref_name == 'new-versions' || github.ref_name == 'ci-full' }}
# if: ${{ github.ref_name == 'new-versions' || github.ref_name == 'ci-full' }}
name: ${{ matrix.name }}
runs-on: ${{ matrix.os || 'macos-latest' }}
needs:
Expand Down Expand Up @@ -480,7 +480,7 @@ jobs:

test-ios:
# if: ${{ env.FULL }}
if: ${{ github.ref_name == 'new-versions' || github.ref_name == 'ci-full' }}
# if: ${{ github.ref_name == 'new-versions' || github.ref_name == 'ci-full' }}
name: Test on iOS simulator w. dinghy
runs-on: macos-11
needs:
Expand Down Expand Up @@ -515,7 +515,7 @@ jobs:
key: cargo-dinghy-${{ github.job }}-${{ matrix.name }}-v0-6-0

- name: Install cargo-dinghy
if: ${{ steps.dinghy-cache.outputs.cache-hit != 'true' }}
# if: ${{ steps.dinghy-cache.outputs.cache-hit != 'true' }}
run: cargo install cargo-dinghy --version=^0.6.0

- name: Launch XCode Simulator and prepare Dinghy
Expand Down Expand Up @@ -729,11 +729,11 @@ jobs:
run: cargo test $ARGS --features=$INTERESTING_FEATURES,catch-all,Foundation

- name: Test all frameworks
if: ${{ env.FULL }}
# if: ${{ env.FULL }}
run: cargo test $ARGS --features=$INTERESTING_FEATURES,catch-all,unstable-frameworks-${{ matrix.frameworks }}

- name: Test in release mode
if: ${{ env.FULL }}
# if: ${{ env.FULL }}
run: cargo test $ARGS --features=Foundation --release

- name: Run fuzzing
Expand All @@ -759,7 +759,7 @@ jobs:
run: cargo bench $ARGS

- name: Test with unstable features
if: ${{ env.FULL && matrix.nightly }}
if: ${{ matrix.nightly }}
run: cargo test $ARGS --features=$INTERESTING_FEATURES,catch-all,Foundation,$UNSTABLE_FEATURES

test-compiler-rt:
Expand Down

0 comments on commit ec2406c

Please sign in to comment.