Skip to content

Commit

Permalink
[#3] Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Aug 5, 2024
1 parent 8ddc5e7 commit 1225dc1
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,12 +323,13 @@ jobs:
x86_64_unstable:
# needs: [preflight-check, static-code-analysis, cargo-nextest]
needs: [cargo-nextest]
#if: ${{ needs.changes.outputs.source-code == 'true' && github.ref != 'refs/heads/main' }}
continue-on-error: true
strategy:
matrix:
#os: [windows-latest, ubuntu-latest, macos-latest]
os: [macos-latest]
os: [macos-latest, macos-13]
toolchain: [beta, nightly]
mode:
- name: "release"
Expand All @@ -341,6 +342,16 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4

- name: So some stuff
run: |
brew update
brew list
echo "#### before brew deps"
brew deps rustup
echo "#### before uninstall"
brew uninstall rustup
- name: Setup Rust
uses: dtolnay/rust-toolchain@v1
with:
Expand All @@ -362,6 +373,13 @@ jobs:
internal/scripts/ci_prepare_ubuntu.sh
uname -a
- name: So more stuff
run: |
echo "#### before output"
ls -la .cargo/bin/
echo "#### before cargo version"
cargo --version
- name: Run cargo build
run: cargo build --workspace --all-targets ${{ matrix.mode.arg }}

Expand Down

0 comments on commit 1225dc1

Please sign in to comment.