Update macOS x86_64 prebuilt JIT library (#54) #198
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: Build and Test | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| build-and-test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04, ubuntu-24.04] | |
| racket-variant: ['CS'] | |
| racket-version: ['8.6', '8.10', '8.14', '8.18', '9.1', 'stable', 'current'] | |
| runs-on: ${{ matrix.os }} | |
| name: OS ${{ matrix.os }} / Racket ${{ matrix.racket-version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: Install Racket | |
| uses: Bogdanp/setup-racket@v1.15 | |
| with: | |
| architecture: 'x64' | |
| distribution: 'full' | |
| variant: ${{ matrix.racket-variant }} | |
| version: ${{ matrix.racket-version }} | |
| - name: Version info | |
| run: | | |
| clang --version | |
| gcc --version | |
| - name: Install a86 package | |
| run: | | |
| raco pkg install --no-docs ../a86/ | |
| - name: Install langs package | |
| run: | | |
| git clone --branch "${{ github.ref_name }}" --single-branch https://github.com/cmsc430/langs.git ../langs | |
| raco pkg install --auto --no-docs ../langs/ | |
| - name: Install libssl | |
| run: | | |
| sudo apt install -y libssl-dev | |
| - name: Run a86 tests | |
| run: | | |
| raco test -p a86 | |
| - name: Run langs tests | |
| run: | | |
| xvfb-run raco test -p langs |