Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Use already compiled Gleam on CI

+10 -12
+2 -2
.github/workflows/ci.yaml
··· 149 149 if: ${{ matrix.run-integration-tests }} 150 150 151 151 - name: test/external_only_javascript 152 - run: make 152 + run: GLEAM_COMMAND=gleam ./test.sh 153 153 working-directory: ./test/external_only_javascript 154 154 if: ${{ matrix.run-integration-tests }} 155 155 156 156 - name: test/external_only_erlang 157 - run: make 157 + run: GLEAM_COMMAND=gleam ./test.sh 158 158 working-directory: ./test/external_only_erlang 159 159 if: ${{ matrix.run-integration-tests }} 160 160
-3
test/external_only_erlang/Makefile
··· 1 - .PHONY: test 2 - test: 3 - sh test.sh
+4 -2
test/external_only_erlang/test.sh
··· 2 2 3 3 set -eu 4 4 5 + GLEAM_COMMAND=${GLEAM_COMMAND:-"cargo run --quiet --"} 6 + 5 7 g() { 6 - echo "Running: cargo run --quiet -- $@" 7 - cargo run --quiet -- "$@" 8 + echo "Running: $GLEAM_COMMAND $@" 9 + $GLEAM_COMMAND "$@" 8 10 } 9 11 10 12 echo Resetting the build directory to get to a known state
-3
test/external_only_javascript/Makefile
··· 1 - .PHONY: test 2 - test: 3 - sh test.sh
+4 -2
test/external_only_javascript/test.sh
··· 2 2 3 3 set -eu 4 4 5 + GLEAM_COMMAND=${GLEAM_COMMAND:-"cargo run --quiet --"} 6 + 5 7 g() { 6 - echo "Running: cargo run --quiet -- $@" 7 - cargo run --quiet -- "$@" 8 + echo "Running: $GLEAM_COMMAND $@" 9 + $GLEAM_COMMAND "$@" 8 10 } 9 11 10 12 echo Resetting the build directory to get to a known state