Skip to content

Commit

Permalink
upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinafyi committed Aug 26, 2024
1 parent 57235f8 commit b2c5c23
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,36 @@ on:

jobs:
build:
strategy:
matrix:
browser: [ electron, chrome, firefox ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4

- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main

- run: nix build .

- uses: actions/upload-artifact@v4
with:
name: aslp-web-build
path: result/lib/ocaml/*/site-lib/aslp_web/*

test:
needs: [ build ]
strategy:
matrix:
browser: [ electron, chrome, firefox ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
name: aslp-web-build
path: result

- uses: cypress-io/github-action@v6
with:
start: "python3 -m http.server -d result/lib/ocaml/5.1.1/site-lib/aslp_web 10000"
start: "python3 -m http.server -d result 10000"
browser: ${{ matrix.browser }}

0 comments on commit b2c5c23

Please sign in to comment.