upload artifact #8
This file contains 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 aslp-web | |
on: | |
push: | |
branches: ["main"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
accept-flake-config = true | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- run: nix build . | |
- run: cp -rv result/lib/ocaml/*/site-lib/aslp_web artifact | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: aslp-web-build | |
path: artifact | |
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 | |
- run: ls -lR result | |
- uses: cypress-io/github-action@v6 | |
with: | |
start: "python3 -m http.server -d result 10000" | |
browser: ${{ matrix.browser }} | |