Skip to content

(fix) ci: fix artifacts, take 4 #11

(fix) ci: fix artifacts, take 4

(fix) ci: fix artifacts, take 4 #11

Workflow file for this run

name: Test262
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache nimble
id: cache-nimble
uses: actions/cache@v4
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }}
restore-keys: |
${{ runner.os }}-nimble-
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: '2.2.0'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble build --define:release --define:baliUseStdBase64 # TODO: get simdutf working here
- run: git clone https://github.com/tc39/test262.git
- run: ./bin/test262 run-all-tests-rec .