We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af1d00 commit fb78359Copy full SHA for fb78359
2 files changed
.github/workflows/ci.yml
@@ -106,8 +106,7 @@ jobs:
106
run: |
107
rm -rf .git
108
# Recompile System without .git
109
- cd lib/elixir && ../../bin/elixirc -o ebin lib/system.ex && cd -
110
- taskset 1 make check_reproducible
+ taskset 1 make recompile_system check_reproducible
111
112
test_windows:
113
name: Windows Server 2022, OTP ${{ matrix.otp_version }}
Makefile
@@ -141,6 +141,9 @@ install: compile
141
done
142
"$(MAKE)" install_man
143
144
+recompile_system:
145
+ $(Q) cd lib/elixir && ../../$(ELIXIRC_MIN_SIG) "lib/system.ex" -o ebin;
146
+
147
check_reproducible: compile
148
$(Q) echo "==> Checking for reproducible builds..."
149
$(Q) rm -rf lib/*/tmp/ebin_reproducible/
0 commit comments